TKO/services/backend/pyproject.toml

26 lines
557 B
TOML
Raw Normal View History

2025-02-07 15:29:03 +01:00
[project]
name = "backend"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.12"
authors = [
{name = "Jakub Kropáček", email = "kropikuba@gmail.com"}
]
dependencies = [
"django>=5.1.5",
"psycopg2-binary>=2.9.10",
"uvicorn[standard]>=0.34.0",
"djangorestframework>=3.15.2",
"django-debug-toolbar>=5.0.1",
"django-environ>=0.12.0",
"wait-for-it>=2.3.0",
2025-02-21 14:54:47 +01:00
"django-cors-headers>=4.7.0",
2025-02-07 15:29:03 +01:00
]
[tool.uv]
package = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"