-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
81 lines (69 loc) · 2.2 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
[tool.poetry]
name = "aiolimiter"
version = "1.2.1"
description = "asyncio rate limiter, a leaky bucket implementation"
license = "MIT"
authors = ["Martijn Pieters <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/mjpieters/aiolimiter"
repository = "https://github.com/mjpieters/aiolimiter"
documentation = "http://aiolimiter.readthedocs.org/en/stable/"
keywords = ["asyncio", "rate-limiting", "leaky-bucket"]
classifiers = [
"Framework :: AsyncIO",
"Intended Audience :: Developers",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
]
[tool.poetry.urls]
"CI: Azure Pipelines" = "https://dev.azure.com/mjpieters/aiolimiter/_build"
"Coverage: codecov" = "https://codecov.io/github/aiolimiter/aiosignal"
"GitHub: issues" = "https://github.com/mjpieters/aiolimiter/issues"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = ">=7,<9"
flake8 = "^5.0.3"
flake8-bugbear = "^23.1.20"
pytest-asyncio = ">=0.24,<0.25"
pytest-cov = ">=4,<6"
tox = ">=3.14.1,<5.0.0"
pre-commit = ">=2.9.2,<4.0.0"
doit = ">=0.34,<0.37"
isort = "^5.2.1"
toml = "^0.10.0"
twine = ">=4,<7"
towncrier = ">=22.8,<25.0"
[tool.poetry.group.dev.dependencies.black]
version = "^24.4.2"
markers = "platform_python_implementation != 'PyPy'"
[tool.poetry.group.dev.dependencies.mypy]
version = "^1.1"
markers = "platform_python_implementation != 'PyPy'"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=4.2.0,<8.0.0"
aiohttp-theme = "^0.1.6"
sphinx-autodoc-typehints = ">=1.10.3,<3.0.0"
sphinxcontrib-spelling = ">=4.3,<8.0"
toml = "^0.10.0"
[tool.black]
target-version = ["py37", "py38", "py39", "py310", "py311", "py312", "py313"]
[tool.isort]
line_length = 88
known_third_party = ["pytest"]
[tool.towncrier]
directory = "changelog.d/"
template = "changelog.d/towncrier_template.md"
filename = "CHANGELOG.md"
package_dir = "src"
package = "aiolimiter"
title_format = "## {name} {version} ({project_date})"
issue_format = "[#{issue}](https://github.com/mjpieters/aiolimiter/issues/{issue})"
start_string = "<!-- Towncrier release notes start -->\n"
underlines = ["", "", ""]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"