-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
90 lines (85 loc) · 1.9 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
89
90
[build-system]
requires = ["setuptools >= 38.6", "pip >= 10"]
build-backend = "setuptools.build_meta"
[project]
name = "pysatMadrigal"
version = "0.2.0"
description = 'Madrigal instrument support for the pysat ecosystem'
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
authors = [
{name = "Angeline G. Burrell et al.", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"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 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
]
keywords = [
"pysat",
"ionosphere",
"Madrigal",
"CEDAR",
"thermosphere",
"GPS",
"GNSS",
"TEC",
"Jicamarca",
"DMSP",
"ISR",
"Incoherent scatter radar",
]
dependencies = [
"h5py",
"madrigalWeb",
"numpy",
"packaging",
"pandas",
"pysat>=3.1.0",
"xarray"]
[project.optional-dependencies]
test = [
"coveralls",
"flake8",
"flake8-docstrings",
"hacking >= 1.0",
"pytest",
"pytest-cov",
"pytest-ordering"
]
doc = [
"extras_require",
"ipython",
"m2r2",
"numpydoc",
"pyproject_parser",
"sphinx",
"sphinx_rtd_theme >= 1.2.2, < 2.0.0"
]
[project.urls]
Documentation = "https://pysatmadrigal.readthedocs.io/en/latest/"
Source = "https://github.com/pysat/pysatMadrigal"
[tool.coverage.report]
[tool.pytest.ini_options]
addopts = "-x --cov=pysatMadrigal"
markers = [
"all_inst",
"download",
"no_download",
"load_options",
"new_tests",
"first",
"second"
]