django init

This commit is contained in:
Jonas Rabenstein 2025-07-14 16:23:54 +02:00
commit b0429003cd
10 changed files with 279 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[project]
name = "r24"
dynamic = [ "version" ]
dependencies = [ "django>2.0" ]
requires-python = ">= 3.8"
license = "MIT"
authors = [
{ name = "Jonas Rabenstein", email = "nonapode+r24@fbs42.ddnss.de" }
]
[project.scripts]
r24 = "r24.manage:main"
[build-system]
requires = [ "setuptools" ]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [ "src/" ]