summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg23
1 files changed, 8 insertions, 15 deletions
diff --git a/setup.cfg b/setup.cfg
index 6fe6cf0..9a7a04a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -11,46 +11,39 @@ classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
keywords = scheduling cron
license = MIT
[options]
packages = find:
-python_requires = >= 3.6
+python_requires = >= 3.7
install_requires =
- dataclasses >= 0.7; python_version < '3.7'
+ anyio ~= 2.0
+ backports.zoneinfo; python_version < '3.9'
+ sortedcontainers ~= 2.2
python-dateutil >= 2.8
pytz
tzlocal >= 1.2
[options.extras_require]
+cbor = cbor2 >= 5.0
mongodb = motor ~= 2.1
postgresql = asyncpg >= 0.20
redis = redis
-sqlalchemy = sqlalchemy >= 1.3
+sqlalchemy = sqlalchemy >= 1.4.0b1
twisted = twisted
zookeeper = kazoo
test =
+ coverage
pytest >= 5.0
pytest-cov
pytest-mock
- pytest-tornado5
doc =
sphinx
sphinx-rtd-theme
-[tool:pytest]
-addopts = -rsx --cov --tb=short
-testpaths = tests
-
-[coverage:run]
-source = apscheduler
-
-[coverage:report]
-show_missing = true
-
[flake8]
max-line-length = 99