-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
40 lines (33 loc) · 933 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
37
38
39
40
[project]
requires-python = ">3.9"
name = "httpx_ratelimiter"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Typing :: Typed",
]
keywords = ["httpx", "rate-limiting", "leaky-bucket"]
authors = [{ name = "Anatoly Raev", email = "cralixraev@gmail.com" }]
dependencies = [
"httpx",
"pyrate-limiter~=3.1.0"
]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/CralixRaev/httpx_ratelimiter"
[project.optional-dependencies]
dev = ["pre-commit"]
[tool.black]
target-versions = ["py39"]
[tool.ruff]
select = ["E", "F", "RUF", "PERF", "TRY", "PL", "PTH", "ARG", "SIM", "PIE", "C4",
"B", "S", "UP", "C90", "A", "T20", "FURB"]
preview = true
target-version = "py39"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.sdist]
include = ["README.md"]