keplemon 3.6.4

Expanded functionality for the Standardized Astrodynamics Algorithms Library (SAAL)
[project]
name = "keplemon"
version = "3.6.4"
dependencies = ["requests", "click"]
description = "Citra Space Corporation's Rust-accelerated astrodynamics library."
authors = [{ name = "Brandon Sexton", email = "brandon@citra.space" }]
license = "MIT"
requires-python = ">=3.9"

[project.urls]
Documentation = "https://keplemon.citra.space"
Repository = "https://github.com/citra-space/keplemon.git"
Issues = "https://github.com/citra-space/keplemon/issues"


[project.optional-dependencies]
dev = [
  "maturin>=1.0,<2.0",
  "keplemon[test]",
  "mkdocstrings[python]",
  "mkdocs-material",
  "markdown-include",
  "tomli; python_version < '3.11'",
]
test = ["pytest"]

[project.scripts]
keplemon = "keplemon.__main__:cli"

[tool.maturin]
python-source = "python"
module-name = "keplemon._keplemon"
include = ["keplemon/*"]
generate-stub = false
bindings = "pyo3"
features = ["python"]
ignore-gitignore = true

[tool.pytest.ini_options]
testpaths = ["tests"]

[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"