initial drf project setup

This commit is contained in:
2025-03-02 08:41:31 -05:00
parent 8b213c462c
commit f4b03ea7cc
18 changed files with 289 additions and 0 deletions

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tsp_backend_seed"
dynamic = ["version"]
dependencies = [
"Django>=5.1.0,<6.0.0",
"djangorestframework>=3.0.0,<4.0.0",
]
[tool.hatch.version]
path = "tsp_backend_seed/__about__.py"