summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 93411158852e0fb7e0b4c902da8500bebe7fcbc4 (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
[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 >= 20.1
    tzlocal >= 3.0

[options.packages.find]
where = src

[options.extras_require]
asyncpg = asyncpg >= 0.20
cbor = cbor2 >= 5.0
mongodb = pymongo >= 3.12
mqtt = paho-mqtt >= 1.5
redis = redis >= 3.5
sqlalchemy = sqlalchemy >= 1.4.22
test =
    asyncpg >= 0.20
    cbor2 >= 5.0
    coverage
    freezegun
    paho-mqtt >= 1.5
    psycopg2
    pymongo >= 3.12
    pymysql[rsa]
    pytest >= 5.0
    pytest-cov
    pytest-freezegun
    pytest-lazy-fixture
    pytest-mock
    redis >= 3.5
    sqlalchemy >= 1.4.22
    trio
doc =
    sphinx
    sphinx-rtd-theme