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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
[build-system]
requires = [
"setuptools >= 61",
"setuptools_scm >= 6.4"
]
build-backend = "setuptools.build_meta"
[project]
name = "APScheduler"
description = "In-process task scheduler with Cron-like capabilities"
readme = "README.rst"
authors = [{name = "Alex Grönholm", email = "alex.gronholm@nextday.fi"}]
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 = {text = "MIT"}
urls = {Homepage = "https://github.com/agronholm/apscheduler"}
requires-python = ">= 3.7"
dependencies = [
"anyio ~= 3.6",
"attrs >= 21.3",
"tenacity ~= 8.0",
"tzlocal >= 3.0",
]
dynamic = ["version"]
[project.optional-dependencies]
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",
]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"
[tool.pytest.ini_options]
addopts = "-rsx --tb=short"
testpaths = "tests"
filterwarnings = "always"
markers = [
"external_service: marks tests as requiring some external service",
]
[tool.coverage.run]
source = ["apscheduler"]
[tool.coverage.report]
show_missing = true
[tool.isort]
src_paths = ["src"]
skip_gitignore = true
profile = "black"
[tool.flake8]
max-line-length = 99
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
[tool.tox]
legacy_tox_ini = """
[tox]
minversion = 3.7.0
envlist = py37, py38, py39, py310, py311, pypy3
skip_missing_interpreters = true
isolated_build = true
[testenv]
extras = test
commands = coverage run -m pytest {posargs}
[testenv:pyright]
deps = pyright
commands = pyright --verifytypes apscheduler
usedevelop = true
[testenv:docs]
extras = doc
commands = sphinx-build docs build/sphinx
"""
|