-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (40 loc) · 1.08 KB
/
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
41
42
[project]
name = "fastsecure"
version = "0.3.0"
description = "Flexible authentication system for FastAPI applications"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Igor Benav", email = "igor.magalhaes.r@gmail.com" }
]
keywords = ["fastapi", "authentication", "oauth", "jwt", "session"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
]
dependencies = [
"bcrypt>=4.2.1",
"greenlet>=3.0.0",
"httpx>=0.28.1",
"pydantic>=2.0.0",
"python-jose[cryptography]>=3.3.0",
"python-multipart>=0.0.20",
"redis>=5.0.0",
"sqlalchemy>=2.0.0",
"types-python-jose>=3.3.4.20240106",
]
[tool.uv]
dev-dependencies = [
"mypy>=1.14.1",
"pytest>=8.3.4",
"ruff>=0.9.4",
"pytest-asyncio>=0.25.3",
"aiosqlite>=0.21.0",
]