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