-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.44 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core"]
[project]
name = 'speasy'
version = "1.5.1"
description = "A simple Python package to deal with main Space Physics WebServices (CDA, CSA, AMDA and SSC)."
keywords = ["satellite", "plasma-physics", "nasa-data", "amda", "cdpp", "CDF"]
authors = [
{ name = "Alexis Jeandet", email = "[email protected]" }
]
maintainers = [
{ name = "Alexis Jeandet", email = "[email protected]" }
]
requires-python = ">=3.9"
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT 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",
"Programming Language :: Python :: 3.13",
]
dependencies = ['PyYAML',
'appdirs',
'astropy',
'astroquery',
'diskcache',
'humanize',
'matplotlib',
'numpy',
'packaging',
'pandas',
'pyistp>=0.7.0',
'python-dateutil',
'requests',
'scipy',
'tqdm',
'urllib3>=1.26.0']
[project.urls]
homepage = "https://github.com/SciQLop/speasy"
[project.optional-dependencies]
zstd = ["pyzstd"]
[tool.ruff.lint]
select = ["NPY201"]