27 lines
581 B
TOML
27 lines
581 B
TOML
[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"]
|