-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (77 loc) · 1.78 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
[build-system]
requires = ["setuptools", "pip >= 10"]
build-backend = "setuptools.build_meta"
[project]
name = "pysatCDAAC"
version = "0.0.4"
description = "pysat support for CDAAC Instruments"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
authors = [
{name = "Jeff Klenzing, et al.", 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.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",
"cosmic",
"radio occultation"
]
dependencies = [
"netCDF4",
"numpy",
"pandas",
"pysat >= 3.0.4",
"requests",
"xarray"
]
[project.optional-dependencies]
test = [
"coveralls < 3.3",
"flake8",
"flake8-docstrings",
"hacking >= 1.0",
"pytest",
"pytest-cov",
"pytest-ordering"
]
doc = [
"extras_require",
"ipython",
"m2r2",
"numpydoc",
"sphinx < 7.0",
"sphinx-autoapi",
"sphinx_rtd_theme >= 1.2.2"
]
[project.urls]
Documentation = "https://pysatcdaac.readthedocs.io/en/latest/"
Source = "https://github.com/pysat/pysatCDAAC"
[tool.coverage.report]
[tool.pytest.ini_options]
addopts = "--cov=pysatCDAAC"
markers = [
"all_inst",
"download",
"no_download",
"load_options",
"first",
"second"
]