sprockets-statsd/setup.cfg

101 lines
2.3 KiB
INI
Raw Normal View History

2021-03-06 14:50:04 +00:00
[metadata]
name = sprockets-statsd
version = attr: sprockets_statsd.version
2021-03-21 14:22:55 +00:00
description = Asynchronously send metrics to a statsd instance.
2021-03-06 14:50:04 +00:00
long_description = file: README.rst
long_description_content_type = text/x-rst
2021-03-06 14:50:04 +00:00
license = BSD 3-Clause License
url = https://sprockets-statsd.readthedocs.io/
project_urls:
Bug Tracker = https://github.com/sprockets/sprockets-statsd/issues/
Documentation = https://sprockets-statsd.readthedocs.io/
Source Code = https://github.com/sprockets/sprockets-statsd/
author = Dave Shawley
author_email = daveshawley@gmail.com
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
2021-03-06 14:50:04 +00:00
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.9
2021-05-10 14:45:30 +00:00
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
2021-03-06 14:50:04 +00:00
Topic :: Communications
Topic :: Internet
Topic :: Software Development
Typing :: Typed
[options]
packages = find:
install_requires =
[options.extras_require]
tornado =
tornado>=5
2021-03-06 14:50:04 +00:00
dev =
coverage==5.5
2021-07-18 14:15:04 +00:00
flake8==3.9.2
flake8-import-order==0.18.1
2021-07-18 14:15:04 +00:00
sphinx==4.1.1
sphinx-autodoc-typehints==1.12.0
2021-04-24 13:15:50 +00:00
sprockets.http==2.2.0
tornado>=5
2021-07-18 14:15:04 +00:00
yapf==0.31.0
2021-04-06 12:08:01 +00:00
readthedocs =
2021-07-18 14:15:04 +00:00
sphinx==4.1.1
2021-07-21 16:35:38 +00:00
sphinx-autodoc-typehints==1.12.0
2021-04-06 12:08:01 +00:00
tornado>=5
2021-03-06 14:50:04 +00:00
[options.packages.find]
exclude =
tests
2021-04-08 11:26:14 +00:00
[options.package_data]
sprockets_statsd =
py.typed
2021-03-06 14:50:04 +00:00
[build_sphinx]
build_dir = build/sphinx
nitpicky = 1
warning_is_error = 1
[coverage:report]
exclude_lines =
pass
pragma: no cover
raise NotImplementedError
2021-03-06 14:50:04 +00:00
fail_under = 100
show_missing = 1
[coverage:run]
branch = 1
source = sprockets_statsd
[flake8]
application_import_names = sprockets_statsd,tests
2021-03-06 14:50:04 +00:00
exclude = build,env,dist
import_order_style = pycharm
[mypy]
cache_dir = build/mypy-cache
check_untyped_defs = true
show_error_codes = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[mypy-sprockets_statsd]
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
strict = true
2021-03-06 14:50:04 +00:00
[yapf]
allow_split_before_dict_value = false
indent_dictionary_value = true