odm/pyproject.toml
2026-08-18 22:03:52 +08:00

17 lines
555 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "odm"
version = "1.0.0"
description = "Orbit Data Messages: read, write and convert orbital element sets"
readme = "README.md"
requires-python = ">=3.10"
# sgp4 only, and only for reading TLE text (Satrec does the unpacking) and for
# the mean-element derivations. No Django, no HTTP, no framework: every service
# that touches ODMS data has to be able to install this.
dependencies = ["sgp4>=2.20"]
[tool.setuptools.packages.find]
include = ["odm*"]