-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
43 lines (38 loc) · 1.41 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core"]
[project]
name = 'speasy'
version = "1.4.0"
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 = "alexis.jeandet@member.fsf.org" }
]
maintainers = [
{ name = "Alexis Jeandet", email = "alexis.jeandet@member.fsf.org" }
]
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 = ['requests', 'pandas', 'diskcache', 'appdirs', 'numpy', 'packaging', 'python-dateutil',
'astropy', 'astroquery', 'pyistp>=0.5.0', 'tqdm', 'matplotlib', 'urllib3>=1.26.0', "PyYAML", "scipy"]
[project.urls]
homepage = "https://github.com/SciQLop/speasy"
[project.optional-dependencies]
zstd = ["pyzstd"]
[tool.ruff.lint]
select = ["NPY201"]