yksa-orbital/pyproject.toml
2026-08-18 22:01:53 +08:00

24 lines
612 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "yksa-orbital"
version = "0.1.0"
description = "Propagation backends for YKSA Django services: sgp4 in-process, Orekit over HTTP"
readme = "yksa_orbital/README.md"
requires-python = ">=3.13"
license = { text = "Proprietary" }
# Django only for the app registry and settings; no models, no migrations.
dependencies = [
"Django>=5.2",
"httpx>=0.27",
"odm>=1.0",
"sgp4>=2.23",
]
[project.optional-dependencies]
test = ["pytest>=8.0"]
[tool.setuptools.packages.find]
include = ["yksa_orbital*"]