sprockets-statsd/setup.cfg
Dave Shawley f8c63a55fc
Switch to asynctest for Py 3.7 support.
Decided to switch the tests to using asynctest so that we can guarantee
support on Python 3.7 and newer.  Also added pins in setup.cfg and a
tox.ini file if you want to use it.
2021-03-10 06:46:17 -05:00

68 lines
1.6 KiB
INI

[metadata]
name = sprockets-statsd
version = attr: sprockets_statsd.version
description = Asynchronous Statsd connector.
long_description = file: README.rst
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 :: 1 - Planning
Indended Audience :: Developers
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
Topic :: Communications
Topic :: Internet
Topic :: Software Development
Typing :: Typed
[options]
packages = find:
install_requires =
tornado>=5
[options.extras_require]
dev =
asynctest==0.13.0
coverage==5.5
flake8==3.8.4
flake8-import-order==0.18.1
sphinx==3.5.2
sphinx-autodoc-typehints==1.11.1
yapf==0.30.0
[options.packages.find]
exclude =
tests
[build_sphinx]
build_dir = build/sphinx
nitpicky = 1
warning_is_error = 1
[coverage:report]
fail_under = 100
show_missing = 1
[coverage:run]
branch = 1
source = sprockets_statsd
[flake8]
application_import_names = sprockets_statsd,tests
exclude = build,env,dist
import_order_style = pycharm
[yapf]
allow_split_before_dict_value = false
indent_dictionary_value = true