-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (30 loc) · 943 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "ccsds_ndm"
author = "Egemen Imre"
description-file = "README.rst"
home-page = "https://github.com/egemenimre/ccsds-ndm/"
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 = [
"xsdata >=20.12"
]
[tool.flit.metadata.requires-extra]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
]
doc = ["sphinx"]
[tool.flit.metadata.urls]
Documentation = "https://ccsds-ndm.readthedocs.io"