Set up Django project with initial structure and configuration files

This commit is contained in:
2025-12-30 22:19:47 +01:00
parent 243975314f
commit 2044d609b6
15 changed files with 364 additions and 0 deletions

8
pyproject.toml Normal file
View File

@@ -0,0 +1,8 @@
[project]
name = "teamforge"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.13"
dependencies = [
"django>=6.0",
]