-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
84 lines (79 loc) · 1.84 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
[build-system]
requires = ["setuptools >= 38.6", "pip >= 10"]
build-backend = "setuptools.build_meta"
[project]
name = "pysatSpaceWeather"
version = "0.2.1"
description = 'pysat support for Space Weather Indices'
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Angeline Burrell", email = "pysat.developers@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"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.9",
"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",
"heliophysics",
"magnetosphere",
"space-weather",
"forecasting",
"indexes"
]
dependencies = [
"netCDF4",
"numpy",
"packaging",
"pandas",
"pysat>=3.2.0",
"requests",
"xarray"]
[project.optional-dependencies]
test = [
"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://pysatspaceweather.readthedocs.io/en/latest/"
Source = "https://github.com/pysat/pysatSpaceWeather"
[tool.coverage.report]
[tool.pytest.ini_options]
markers = [
"all_inst",
"download",
"no_download",
"load_options",
"new_tests",
"first",
"second"
]