-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (60 loc) · 1.4 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
[build-system]
requires = ["uv_build>=0.8.0,<0.9.0"]
build-backend = "uv_build"
[project]
name = "OrbitalPy"
version = "0.7.0"
description = "High level orbital mechanics package."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Frazer McLean", email = "frazer@frazermclean.co.uk" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
"astropy>=6.0.1",
"matplotlib>=3.9.4",
"numpy>=1.26.4",
"represent>=2.1",
"scipy>=1.13.1",
"sgp4>=2.24",
]
[project.urls]
Repository = "https://github.com/RazerM/orbital"
[dependency-groups]
dev = [
{ include-group = "nox" },
"pytest>=8.4.1",
"ruff==0.12.5",
"tabulate>=0.9.0",
]
docs = [
"furo>=2025.7.19",
"sphinx>=7.4.7",
]
nox = [
"nox>=2025.5.1",
]
[tool.uv.build-backend]
module-name = "orbital"
[tool.ruff.lint]
select = [
"E4", "E7", "E9", "F", # ruff defaults
"I", # isort
"UP", # pyupgrade
"RUF", # ruff
]
[tool.pytest.ini_options]
addopts = "-r s"
testpaths = ["tests"]