-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
170 lines (156 loc) · 4.03 KB
/
pyproject.toml
File metadata and controls
170 lines (156 loc) · 4.03 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
[build-system]
requires = ["setuptools>=61.0,<82.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyspedas"
version = "2.1.0"
description = "Python Space Physics Environment Data Analysis Software (pySPEDAS)"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Jim Lewis", email = "jwl@ssl.berkeley.edu"},
]
keywords = [
"SPEDAS",
"data",
"tools",
"space physics",
"data analysis",
"space science",
"scientific computing",
"time series analysis",
"data visualization",
"satellite data",
"magnetosphere",
"ionosphere",
"heliophysics",
"geophysics",
"remote sensing",
"astrophysics",
"solar physics",
"space weather",
"data retrieval",
"NASA",
"NOAA",
"ESA",
"JAXA",
"HSO",
"CDF",
"ISTP",
"netCDF",
"Python package",
"THEMIS",
"ARTEMIS",
"MMS",
"ERG",
"Arase",
"ACE",
"MAVEN",
"RBSP",
"Van Allen Probes",
"GOES",
"POES",
"Cluster",
"OMNIWeb",
"aurora",
"geomagnetic index",
"Kp index",
"AE index",
"magnetic field models",
"Tsyganenko",
"IGRF",
"geopack",
"magnetotelluric",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.20.0",
"requests>=2.31.0",
"geopack>=1.0.12",
"scipy>=1.11.1",
"cdflib>=1.0.0",
"spacepy>=0.5.0",
"cdasws>=1.7.24",
"netCDF4>=1.6.2",
"pywavelets>=1.4.1",
"astropy>=5.3.1",
"hapiclient>=0.2.2",
"fsspec>=2023.9.0",
"s3fs>=2023.9.0",
"aioboto3>=11.1.1",
"pandas>=2.0.3",
"matplotlib>=3.6.2",
"xarray>=2023.7.0",
"setuptools<82.0.0"
]
[project.urls]
Homepage = "https://github.com/spedas/pyspedas"
Information = "https://spedas.org/wiki/"
Documentation = "https://pyspedas.readthedocs.io"
Issue_Tracker = "https://github.com/spedas/pyspedas/issues"
Source_Code = "https://github.com/spedas/pyspedas"
Concept_DOI = "https://doi.org/10.5281/zenodo.17634923"
Versioned_DOI = "https://doi.org/10.5281/zenodo.18718385"
[tool.setuptools]
packages = {find = {exclude = ["contrib", "docs", "tests*"]}}
include-package-data = true
[tool.setuptools.package-data]
"*"=["*.md","LICENSE.txt"]
"pyspedas.projects.mms.feeps_tools.sun" = ["*.csv"]
"pyspedas.projects.mms.mec_tools" = ["*.png"]
"pyspedas.projects.elfin.epd" = ["el*_epde_cal_data.txt"]
"pyspedas.projects.elfin.tests" = ["test_epde_cal_data.txt"]
# --- End-user selectable extras (go into wheel metadata) ---
[project.optional-dependencies]
mth5 = ["mth5>=0.5.0,<0.6.0","obspy>=1.4.2", "mt-metadata>=0.4.0,<1.0.0"]
vires = ["viresclient>=0.13.0"]
maps = ["basemap>=2.0.0"]
# convenience group to get everything
all = ["mth5>=0.5.0,<0.6.0", "obspy>=1.4.2", "mt-metadata>=0.4.0,<1.0.0", "viresclient>=0.13.0", "basemap>=2.0.0"]
# --- Development dependencies, not in wheel metadata, for PySPEDAS devs, CI workflows, etc
[dependency-groups]
lint = [
"ruff>=0.12.10",
"flake8>=7.3.0",
"pylint>=2.17.0",
]
doc = [
"sphinx>=1.7.6",
"sphinx-rtd-theme>=3.0.2",
]
jupyter = [
"jupyter>=1.1.1",
"nbdime>=4.0.2",
]
test = [
"moto[server]>=5.1.11",
"coveralls>=4.0.2",
]
setup = [
"setuptools>=80.9.0,<82.0.0",
"build>=1.3.0",
"wheel>=0.45.1",
]
# Ruff linter configuration -- mostly the defaults, with just a few changes
[tool.ruff]
line-length = 127
indent-width = 4
ignore = [
"E501", # Ignore line too long
]
[tool.pylint]
disable = ["line-too-long", "too-many-arguments",]