27 lines
645 B
TOML
27 lines
645 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "yksa-web-kit"
|
|
version = "0.1.2"
|
|
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"]
|