forked from vutran1710/PyrateLimiter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.27 KB
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
[tool.poetry]
name = "pyrate-limiter"
version = "2.6.0"
description = "Python Rate-Limiter using Leaky-Bucket Algorimth Family"
authors = ["vutr <me@vutr.io>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vutran1710/PyrateLimiter"
repository = "https://github.com/vutran1710/PyrateLimiter"
keywords = ["rate", "rate-limiter", "rate_limiter", "ratelimiter", "leaky-bucket", "ratelimit", "ratelimiting"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6.2"
[tool.poetry.dev-dependencies]
pytest = "^5.4"
pytest-asyncio = "^0.12"
flake8 = "^3.7"
pylint = "^2.4"
logzero = "^1.5"
redis = "^3.3"
fakeredis = "^1.1.0"
jedi = "^0.15.2"
coverage = "^5.5"
radon = "^4.3.2"
flake8_polyfill = "^1.0.2"
PyYAML = "^5.4.1"
redis-py-cluster = "^2.1.3"
django-redis = "^5.0.0"
Django = "^3.2.8"
isort = "^5.9.3"
black = "^21.12b0"
[tool.poetry.scripts]
test = 'scripts:test'
lint = 'scripts:lint'
cover = 'scripts:cover'
format = 'scripts:format'
[tool.black]
line-length = 120
[tool.ipdb]
context=7
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"