-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 942 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "humeris-core"
version = "1.28.4"
description = "Astrodynamics library for satellite constellation design — MIT open core"
requires-python = ">=3.11"
license = "MIT"
authors = [{name = "Jeroen Visser"}]
keywords = ["satellite", "constellation", "orbital-mechanics", "astrodynamics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = ["numpy>=1.24"]
[project.optional-dependencies]
live = ["sgp4>=2.22"]
[project.scripts]
humeris = "humeris.cli:main"
humeris-gui = "humeris.gui:main"
[tool.hatch.build.targets.wheel]
packages = ["src/humeris"]