36 lines
790 B
TOML
36 lines
790 B
TOML
[project]
|
|
name = "luxx"
|
|
version = "1.0.0"
|
|
description = "luxx - FastAPI + SQLAlchemy"
|
|
readme = "docs/README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"fastapi>=0.109.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"python-multipart>=0.0.6",
|
|
"sse-starlette>=2.0.0",
|
|
"sqlalchemy>=2.0.25",
|
|
"aiosqlite>=0.19.0",
|
|
"pyjwt>=2.8.0",
|
|
"bcrypt>=4.1.2",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"httpx>=0.26.0",
|
|
"requests>=2.31.0",
|
|
"beautifulsoup4>=4.12.3",
|
|
"lxml>=5.1.0",
|
|
"pyyaml>=6.0.1",
|
|
"shortuuid>=1.0.11",
|
|
"pydantic>=2.5.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"email-validator>=2.1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"pytest-cov>=4.1.0",
|
|
"black>=24.0.0",
|
|
"ruff>=0.1.0",
|
|
] |