forked from spedas/pyspedas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
120 lines (114 loc) · 2.87 KB
/
pyproject.toml
File metadata and controls
120 lines (114 loc) · 2.87 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyspedas"
version = "1.1.6"
description = "Python Space Physics Environment Data Analysis Software (pySPEDAS)"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
license = {text = "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",
"License :: OSI Approved :: MIT License",
"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 :: OS Independent",
]
dependencies = [
"numpy>=1.20.0",
"requests",
"geopack>=1.0.11",
"scipy",
"cdflib>=1.0.0",
"spacepy",
"cdasws>=1.7.24",
"netCDF4>=1.6.2",
"pywavelets",
"astropy",
"hapiclient>=0.2.2",
"pytplot-mpl-temp>=2.2.52",
"viresclient",
"fsspec",
"s3fs",
"aioboto3",
]
[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"
"DOI (Latest)" = "https://doi.org/10.5281/zenodo.15597323"
"DOI (All Versions)" = "https://doi.org/10.5281/zenodo.14862141"
[tool.setuptools]
packages = {find = {exclude = ["contrib", "docs", "tests*"]}}
include-package-data = true
[tool.setuptools.package-data]
"*"=["*.md","LICENSE.txt"]
"pyspedas.projects.mms.feeps.sun" = ["*.csv"]
"pyspedas.projects.mms.mec" = ["*.png"]
"pyspedas.projects.elfin.epd" = ["el*_epde_cal_data.txt"]
"pyspedas.projects.elfin.tests" = ["test_epde_cal_data.txt"]