-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.04 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "satmad_applications"
author = "Egemen Imre"
description-file = "README.md"
home-page = "https://github.com/egemenimre/satmad_applications/"
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",
"matplotlib",
"numpy",
"portion",
"satmad",
"scipy",
"sgp4",
]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
doc = ["sphinx"]
[tool.flit.metadata.urls]
Documentation = "https://satmad-applications.readthedocs.io/en/latest/"