forked from hardbyte/fastapi-ratelimit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 889 Bytes
/
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
[tool.poetry]
authors = ["Brian Thorne <[email protected]>"]
description = "A request rate limiter for fastapi"
documentation = "https://github.com/hardbyte/fastapi-ratelimit"
homepage = "https://github.com/hardbyte/fastapi-ratelimit"
include = ["CHANGELOG.md", "LICENSE", "README.md"]
keywords = ["fastapi", "limiter", "ratelimit"]
license = "Apache-2.0"
name = "fastapi-ratelimit"
packages = [
{include = "fastapi_ratelimit"},
]
readme = "README.md"
repository = "https://github.com/hardbyte/fastapi-ratelimit.git"
version = "0.1.0"
[tool.poetry.dependencies]
aioredis = "^2.0.1"
fastapi = "*"
python = "^3.7"
[tool.poetry.dev-dependencies]
bandit = "*"
black = "*"
flake8 = "*"
isort = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-mock = "*"
pytest-xdist = "*"
uvicorn = "*"
requests = "*"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]