-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# SPDX-FileCopyrightText: 2023 Helge Eichhorn <git@helgeeichhorn.de>
#
# SPDX-License-Identifier: MPL-2.0
[project]
name = "lox-space"
description = "An astrodynamics library for orbital mechanics, mission analysis, and telecommunications"
authors = [{name = "Helge Eichhorn", email = "git@helgeeichhorn.de"}]
license = {text = "MPL-2.0"}
readme = "crates/lox-space/README.md"
requires-python = ">=3.11"
keywords = ["astrodynamics", "orbital-mechanics", "mission-analysis", "space"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = ["numpy >= 1.16.0"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/lox-space/lox"
Documentation = "https://python.lox.rs"
Repository = "https://github.com/lox-space/lox"
[dependency-groups]
dev = [
"astropy>=6.0",
"black",
"ipython",
"maturin",
"pytest",
"pytest-codspeed",
"pytest-cov>=6.0.0",
"skyfield>=1.45",
"spacelink",
"spiceypy>=6.0.0",
]
docs = ["zensical", "mkdocstrings[python]>=0.18"]
[build-system]
requires = ["maturin>=1.3,<2.0"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "crates/lox-space/Cargo.toml"
features = ["python"]
[tool.pytest.ini_options]
testpaths = ["crates/lox-space/tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"benchmark: marks tests as benchmark tests",
]
[tool.uv]
# Rebuild package when any rust files change
cache-keys = [
{ file = "pyproject.toml" },
{ file = "Cargo.toml" },
{ file = "crates/**/*.pyi" },
{ file = "crates/**/*.rs" },
]