-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
88 lines (83 loc) · 1.86 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools >= 38.6", "pip >= 10"]
build-backend = "setuptools.build_meta"
[project]
name = "pysatMissions"
version = "0.3.5"
description = "Mission Planning toolkit for pysat"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Jeff Klenzing", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
]
keywords = [
"pysat",
"ionosphere",
"cubesat",
"satellite",
"ephemeris",
"orbit",
"mission-planning"
]
dependencies = [
"geospacepy",
"numpy",
"pandas",
"pysat >= 3.0.4",
"pyEphem",
"sgp4 >= 2.7",
"skyfield"
]
[project.optional-dependencies]
aacgmv2 = ["aacgmv2"]
apexpy = ["apexpy"]
OMMBV = ["OMMBV"]
test = [
"coveralls < 3.3",
"flake8",
"flake8-docstrings",
"hacking >= 1.0",
"pytest",
"pytest-cov",
"pytest-ordering"
]
doc = [
"extras_require",
"ipython",
"m2r2",
"numpydoc",
"pyproject_parser",
"sphinx",
"sphinx_rtd_theme<2.0.0"
]
[project.urls]
Documentation = "https://pysatmissions.readthedocs.io/en/latest/"
Source = "https://github.com/pysat/pysatMissions"
[tool.coverage.report]
[tool.pytest.ini_options]
addopts = "--cov=pysatMissions"
markers = [
"all_inst",
"download",
"no_download",
"load_options",
"first",
"second"
]