generated from JustScreaMy/ProjectTemplate
25 lines
523 B
TOML
25 lines
523 B
TOML
|
[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",
|
||
|
]
|
||
|
|
||
|
[tool.uv]
|
||
|
package = false
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|