33 lines
616 B
TOML
33 lines
616 B
TOML
[project]
|
|
name = "shop-backend"
|
|
version = "0.1.0"
|
|
description = "Shopsystem Core + Apps"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"uvicorn[standard]>=0.30",
|
|
"sqlalchemy>=2.0",
|
|
"alembic>=1.13",
|
|
"psycopg[binary]>=3.2",
|
|
"redis>=5.0",
|
|
"pydantic>=2.9",
|
|
"pydantic-settings>=2.5",
|
|
"python-jose[cryptography]>=3.3",
|
|
"argon2-cffi>=23.1",
|
|
"httpx>=0.27",
|
|
"pgvector>=0.3",
|
|
"pyyaml>=6.0",
|
|
"jinja2>=3.1",
|
|
"aiosmtplib>=3.0",
|
|
"python-multipart>=0.0.9",
|
|
"punq>=0.7",
|
|
"email-validator>=2.2",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|