Files
api-copp/pyproject.toml
2026-03-20 12:10:41 +05:00

47 lines
941 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "api-copp"
version = "0.3.0"
description = "API приложение на FastAPI"
readme = "README.md"
requires-python = ">=3.14"
authors = [{name = "Author", email = "author@example.com"}]
keywords = ["api", "fastapi"]
dependencies = [
"fastapi>=0.128.0",
"uvicorn[standard]>=0.40.0",
"pydantic>=2.12.5",
"python-dotenv>=1.2.1",
"redis>=7.1.0",
"sqlalchemy>=2.0.47",
"psycopg>=3.3.3",
"flet>=0.82.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/user/api-copp"
Documentation = "http://localhost:8000/docs"
[tool.hatch.build.targets.wheel]
packages = ["route"]
[tool.black]
line-length = 100
target-version = ["py314"]
[tool.ruff]
line-length = 100
target-version = "py314"