-
Notifications
You must be signed in to change notification settings - Fork 55
/
pyproject.toml
47 lines (41 loc) · 1.01 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
[tool.poetry]
authors = ["long2ice <long2ice@gmail.com>"]
description = "A request rate limiter for fastapi"
documentation = "https://github.com/long2ice/fastapi-limiter"
homepage = "https://github.com/long2ice/fastapi-limiter"
include = ["CHANGELOG.md", "LICENSE", "README.md"]
keywords = ["fastapi", "limiter"]
license = "Apache2.0"
name = "fastapi-limiter"
packages = [
{ include = "fastapi_limiter" },
]
readme = "README.md"
repository = "https://github.com/long2ice/fastapi-limiter.git"
version = "0.1.6"
[tool.poetry.dependencies]
redis = ">=4.2.0rc1"
fastapi = "*"
python = "^3.9"
[tool.poetry.group.dev.dependencies]
uvicorn = "*"
bandit = "*"
black = "*"
ruff = "*"
isort = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-mock = "*"
pytest-xdist = "*"
requests = "*"
httpx = "*"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.ruff]
line-length = 100