2351b489fe
- Generate frontend/package-lock.json (required by npm ci) - Add network: host to BuildKit build stages to fix DNS in pip installs - Switch pyproject.toml build backend to setuptools.build_meta (stable) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
670 B
TOML
35 lines
670 B
TOML
[build-system]
|
|
requires = ["setuptools>=45"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "destroying_sap"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.111",
|
|
"uvicorn[standard]>=0.29",
|
|
"sqlalchemy[asyncio]>=2.0",
|
|
"asyncpg>=0.29",
|
|
"alembic>=1.13",
|
|
"pydantic[email]>=2.7",
|
|
"pydantic-settings>=2.2",
|
|
"python-jose[cryptography]>=3.3",
|
|
"passlib[bcrypt]>=1.7",
|
|
"python-multipart>=0.0.9",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-asyncio>=0.23",
|
|
"httpx>=0.27",
|
|
"ruff>=0.4",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|