Initial commit
This commit is contained in:
commit
5fb00f30d1
22 changed files with 1128 additions and 0 deletions
24
pyproject.toml
Normal file
24
pyproject.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[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*"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue