-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
104 lines (95 loc) · 2.39 KB
/
pyproject.toml
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
[tool.coverage.paths]
source = ["aiocronjob", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["aiocronjob"]
[tool.coverage.report]
fail_under = 98
precision = 2
exclude_lines = [
"def __repr__",
"if self.debug",
"pragma: not covered",
"@overload",
"raise AssertionError",
"raise NotImplementedError",
"pass",
"except ImportError:",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@(abc.)?abstractmethod",
]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.pdm.build]
includes = ["aiocronjob", "README.md"]
excludes = ["tests/"]
[tool.pdm.dev-dependencies]
dev = [
"coverage[toml]>=5.1",
"codecov>=2.1.11",
"black>=20.8b1",
"httpx>=0.17.1",
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[project]
name = "aiocronjob"
version = "0.7.0"
description = "Schedule async tasks and manage them using a REST API or WEB UI"
authors = [
{ name = "devtud", email = "devtud@gmail.com" },
]
dependencies = [
"uvicorn>=0.11.5",
"crontab>=0.22.8",
"pytz>=2020.1",
"aiofiles>=0.5.0",
"starlite>=1.40.0",
"async-asgi-testclient>=1.4.11",
]
requires-python = ">=3.8"
readme = "README.md"
license = { text = "MIT" }
maintainers = [
{ name = "devtud", email = "devtud@gmail.com" },
]
keywords = ["async tasks", "crontab", "rest api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[project.urls]
homepage = "https://github.com/devtud/aiocronjob"
repository = "https://github.com/devtud/aiocronjob"