-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (29 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
30 lines (29 loc) · 817 Bytes
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
[project]
name = "fastforge"
version = "0.1.0"
description = "FastAPI boilerplate with RBAC, JWT, OTP auth, Redis, and rate-limiting"
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"alembic>=1.17.1,<2.0.0",
"email-validator>=2.3.0,<3.0.0",
"fastapi[standard]>=0.121.1,<1.0.0",
"psycopg[binary]>=3.2.12,<4.0.0",
"pyjwt>=2.10.1,<3.0",
"pytest>=9.0.0,<10.0.0",
"pytest-asyncio>=1.3.0,<2.0.0",
"python-dotenv>=1.2.1,<2.0.0",
"redis[hiredis]>=7.0.1,<8.0.0",
"ruff>=0.14.4,<1.0.0",
"slowapi>=0.1.9,<1.0.0",
"sqlmodel>=0.0.27,<0.1.0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1,<1.0.0",
"isort>=7.0.0,<8.0.0",
"pre-commit>=4.4.0,<5.0.0",
"pytest>=9.0.0,<10.0.0",
"pytest-asyncio>=1.3.0,<2.0.0",
"pytest-cov>=7.0.0,<8.0.0",
]