Initial commit

This commit is contained in:
ThePetrovich 2026-08-17 22:50:10 +08:00
commit 5cda7bc309
28 changed files with 1173 additions and 0 deletions

27
pyproject.toml Normal file
View file

@ -0,0 +1,27 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "yksa-django-kit"
version = "0.1.0"
description = "Cross-cutting Django plumbing shared by the YKSA TMTC services"
requires-python = ">=3.13"
license = { text = "Proprietary" }
dependencies = [
"Django>=5.2",
"httpx>=0.27",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-django>=4.8",
]
[tool.setuptools.packages.find]
include = ["yksa_kit*"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
python_files = ["test_*.py"]