-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
68 lines (53 loc) · 1.52 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
[tool.poetry]
name = "asyncio-redis-rate-limit"
description = "Rate limiter for async functions using Redis as a backend"
version = "1.0.0"
license = "MIT"
readme = "README.md"
authors = [
"Nikita Sobolev <mail@sobolevn.me>"
]
repository = "https://github.com/wemake-services/asyncio-redis-rate-limit"
keywords = [
"asyncio",
"rate-limiter",
"redis",
"redis-py",
"aioredis",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.urls]
"Funding" = "https://github.com/sponsors/wemake-services"
[tool.poetry.dependencies]
python = "^3.9"
redis = { version = ">=4.5,<6", optional = true }
# aioredis and python3.11 are not compatible:
aioredis = { version = ">=2.0", optional = true, python = "<3.11" }
typing-extensions = ">=3.10"
[tool.poetry.group.test.dependencies]
mypy = "^1.11"
types-redis = "^4.6"
types-mock = "^5.0"
wemake-python-styleguide = "^0.19"
flake8-pytest-style = "^2.0"
nitpick = "^0.35"
pytest = "^8.3"
pytest-cov = "6.0.0"
pytest-randomly = "^3.12"
pytest-asyncio = ">=0.23,<0.26"
pytest-freezegun = "^0.4"
pytest-repeat = "^0.9"
[tool.poetry.extras]
redis = ["redis"]
aioredis = ["aioredis"]
dev = ["redis", "aioredis"]
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/0.19.2/styles/nitpick-style-wemake.toml"