-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.01 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "satmad"
author = "Egemen Imre"
description-file = "README.md"
home-page = "https://github.com/egemenimre/satmad/"
keywords = "satellite,satellite design,mission analysis,aerospace,engineering,astrodynamics,orbits,orbital mechanics"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
requires = [
"astropy",
"jplephem",
"matplotlib",
"numpy",
"portion",
"pyerfa",
"scipy",
"sgp4",
]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
doc = ["sphinx"]
[tool.flit.metadata.urls]
Documentation = "https://satmad.readthedocs.io/en/latest/"