-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.29 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
[project]
name = "fastapi-limiter"
version = "0.2.0"
description = "A request rate limiter for fastapi"
authors = [{ name = "long2ice", email = "[email protected]" }]
requires-python = ">=3.9,<4"
readme = "README.md"
license = "Apache-2.0"
keywords = ["fastapi", "limiter"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["fastapi", "pyrate-limiter>=3.9.0"]
[project.urls]
Homepage = "https://github.com/long2ice/fastapi-limiter"
Repository = "https://github.com/long2ice/fastapi-limiter.git"
Documentation = "https://github.com/long2ice/fastapi-limiter"
[dependency-groups]
dev = [
"uvicorn",
"ruff",
"ty",
"pytest",
"pytest-asyncio",
"pytest-mock",
"pytest-xdist",
"requests",
"httpx",
]
[tool.uv.build-backend]
module-name = ["fastapi_limiter"]
module-root = ""
source-include = ["CHANGELOG.md", "LICENSE", "README.md"]
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"