-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.74 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
[tool.poetry]
name = "kaioretry"
version = "1.0.2"
description = "All in one retry and aioretry decorators"
authors = ["Damien Nadé <[email protected]>"]
license = "LGPL-2.1-or-later"
repository = "https://github.com/Anvil/kaioretry/"
readme = "README.md"
keywords = ["retry", "decorator", "asyncio"]
documentation = "https://kaioretry.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.10"
typing_extensions = ">=4.5.0"
mypy-extensions = ">=1"
[tool.poetry.dev-dependencies]
pytest = ">6"
pytest-asyncio = "^0.20"
pytest-mock = "^3.10"
pytest-cases = "^3.6"
pytest-cov = ">=4"
[tool.poetry.group.sphinx]
optional = true
[tool.poetry.group.sphinx.dependencies]
sphinx = ">=7"
sphinx-autodoc-typehints = ">=1.17"
sphinx-rtd-theme = ">=2"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
color_output = true
ignore_missing_imports = false
pretty = true
raise_exceptions = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
show_error_end = true
show_traceback = true
strict = true
warn_unused_configs = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
disallow_untyped_decorators = true
packages = ["kaioretry", "test.static_analysis"]