Initial commit

This commit is contained in:
ThePetrovich 2026-08-17 22:42:04 +08:00
commit 97e799fd52
61 changed files with 2252 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-web-kit"
version = "0.1.0"
description = "Shared chrome, UI kit and vendored front-end assets for the YKSA services"
requires-python = ">=3.13"
license = { text = "Proprietary" }
dependencies = ["Django>=5.2"]
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-django>=4.8",
]
[tool.setuptools.packages.find]
include = ["yksa_web*"]
[tool.setuptools.package-data]
yksa_web = ["templates/**/*.html", "static/**/*"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
python_files = ["test_*.py"]