-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
176 lines (165 loc) · 5.06 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
[tool.poetry]
name = "aiomisc"
# This is a dummy version which will be rewritten with poem-plugins
version = "17.5.25"
description = "aiomisc - miscellaneous utils for asyncio"
authors = ["Dmitry Orlov <me@mosquito.su>"]
readme = "README.rst"
license = "MIT"
homepage = "https://github.com/aiokitchen/aiomisc"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Framework :: Pytest",
"Framework :: aiohttp",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: System :: Archiving :: Compression",
"Topic :: System :: Logging",
"Topic :: System",
"Topic :: Utilities",
"Typing :: Typed",
]
packages = [
{ include = "aiomisc" },
{ include = "aiomisc_log" },
{ include = "aiomisc_worker" },
]
[tool.poetry.urls]
"Source" = "https://github.com/aiokitchen/aiomisc"
"Tracker" = "https://github.com/aiokitchen/aiomisc/issues"
"Changelog" = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md"
"Documentation" = "https://aiomisc.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.8"
aiocarbon = { version = "^0.15", optional = true }
aiohttp = { version = ">3", optional = true }
aiohttp-asgi = { version = "^0.5.2", optional = true }
colorlog = "^6.0"
croniter = { version = "2.0", optional = true }
grpcio = { version = "^1.56", optional = true }
grpcio-tools = { version = "^1.56", optional = true }
grpcio-reflection = { version = "^1.56", optional = true }
logging-journald = [{ version = '*', platform = 'linux' }]
raven = { version = "*", optional = true }
rich = { version = "*", optional = true }
setuptools = [{ version = '*', python = "< 3.8" }]
typing_extensions = [{ version = '*', python = "< 3.10" }]
uvloop = { version = ">=0.19, <1", optional = true }
uvicorn = { version = "^0.27", optional = true }
asgiref = { version = "^3.7", optional = true }
dnslib = { version = "^0.9", optional = true }
[tool.poetry.group.dev.dependencies]
aiocarbon = "^0.15.3"
aiohttp = "^3.9"
aiohttp-asgi = "~0.5.2"
aiomisc-pytest = "^1.0.8"
asgiref = "^3.7"
async-timeout = "^4.0.2"
autodoc = "^0.5.0"
autoflake = "1.4"
certifi = "^2024.6.2"
collective-checkdocs = "^0.2"
coveralls = "^3.3.1"
croniter = "^2.0"
dnslib = "^0.9"
fastapi = "^0.110"
furo = "^2022"
grpc-stubs = "^1.53.0.2"
grpcio = "^1.64"
grpcio-reflection = "^1.64"
grpcio-tools = "^1.64"
mypy = "^1.9"
pre-commit = "^2.20.0"
pylama = "^8.4.1"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-freezegun = "^0.4.2"
pytest-rst = ">=0.0.7"
pytest-subtests = "^0.9.0"
raven = "^6.10.0"
rich = "^12.6"
setproctitle = "^1.3"
sphinx = ">=3.5.1"
sphinx-autobuild = "^2021.3.14"
sphinx-intl = "^2.0"
timeout-decorator = "^0.5.0"
types-croniter = "^1.3"
types-setuptools = "^65.6.0.1"
uvicorn = "^0.27"
pytest-rerunfailures = "^14.0"
[tool.poetry.group.uvloop.dependencies]
uvloop = "^0.19.0"
[tool.poetry.extras]
aiohttp = ["aiohttp"]
asgi = ["aiohttp-asgi"]
carbon = ["aiocarbon"]
cron = ["croniter"]
dns = ["dnslib"]
grpc = ["grpcio", "grpcio-tools", "grpcio-reflection"]
raven = ["aiohttp", "raven"]
rich = ["rich"]
uvicorn = ["uvicorn", "asgiref"]
uvloop = ["uvloop"]
[tool.poetry.plugins.aiomisc]
systemd_watchdog = "aiomisc.service.sdwatchdog"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poem-plugins.version]
provider = "git"
update_pyproject = true
write_version_file = true
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
follow_imports = "silent"
no_implicit_reexport = true
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
files = [
"aiomisc",
"aiomisc_log",
"aiomisc_worker",
"tests",
]
[[tool.mypy.overrides]]
module = "aiomisc.service.dns.records"
check_untyped_defs = true
disallow_subclassing_any = false
[[tool.mypy.overrides]]
module = ["tests.*"]
check_untyped_defs = true
disallow_incomplete_defs = false
disallow_untyped_calls = false
disallow_untyped_decorators = false
disallow_untyped_defs = false