blob: 8689679ab6f16e600cc24f1fb9adb5b857a88299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
[metadata]
name = APScheduler
description = In-process task scheduler with Cron-like capabilities
long_description = file: README.rst
author = Alex Grönholm
author_email = alex.gronholm@nextday.fi
url = https://github.com/agronholm/apscheduler
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = scheduling cron
license = MIT
[options]
package_dir=
= src
packages = find:
python_requires = >= 3.7
install_requires =
anyio ~= 3.0
attrs >= 21.3
tenacity ~= 8.0
tzlocal >= 3.0
[options.packages.find]
where = src
[options.extras_require]
asyncpg = asyncpg >= 0.20
cbor = cbor2 >= 5.0
mongodb = pymongo >= 4
mqtt = paho-mqtt >= 1.5
redis = redis >= 4.0
sqlalchemy = sqlalchemy >= 1.4.22
test =
asyncpg >= 0.20
cbor2 >= 5.0
coverage
freezegun
paho-mqtt >= 1.5
psycopg2
pymongo >= 4
pymysql[rsa]
pytest >= 5.0
pytest-cov
pytest-freezegun
pytest-lazy-fixture
pytest-mock
redis[hiredis] >= 4.0
sqlalchemy >= 1.4.22
trio
doc =
sphinx
sphinx-rtd-theme
|