-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 982 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
31
32
33
34
35
36
37
38
39
[project]
name = "fastapi-oauth-rbac"
version = "0.1.16"
description = "A comprehensive FastAPI library for Authentication and NIST-style Role-Based Access Control (RBAC) with SQLAlchemy support."
readme = "README.md"
authors = [
{ name = "Fernando", email = "fernando@softpoint.es" }
]
requires-python = ">=3.10"
dependencies = [
"alembic>=1.18.3",
"argon2-cffi>=25.1.0",
"email-validator>=2.2.0",
"fastapi>=0.128.0",
"httpx>=0.28.1",
"jinja2>=3.1.6",
"pwdlib[argon2]>=0.3.0",
"pydantic-settings>=2.12.0",
"pytest-asyncio>=1.3.0",
"python-jose[cryptography]>=3.5.0",
"python-multipart>=0.0.22",
"sqlalchemy[asyncio]>=2.0.46",
"uvicorn>=0.34.0",
]
[project.optional-dependencies]
postgres = ["asyncpg>=0.29.0"]
sqlite = ["aiosqlite>=0.20.0"]
[build-system]
requires = ["uv_build>=0.9.15,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"asyncpg>=0.31.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]