-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.48 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
[build-system]
requires = ["setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel"]
build-backend = 'setuptools.build_meta'
[project]
name = "rbinvariantslib"
description = 'Radiation Belt Adiabatic Invariants Calculation from TS05, T96, LFM, and SWMF magnetic field models'
dynamic = ["version"]
authors = [{name = "Daniel da Silva", email = "[email protected]"}]
license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
]
dependencies = [
"astropy>=5.1",
"cdasws>=1.8.7",
"h5py>=3.10.0",
"numpy>=1.24.4,<2",
"PyGeopack>=1.2.6",
"pyhdf",
"pyvista",
"scipy>=1.9.3",
"spacepy>=0.7.0",
"types-python-dateutil"
]
[project.optional-dependencies]
dev = [
"coverage",
"pytest",
"requests",
]
docs = [
"sphinx",
"sphinx_automodapi",
"numpydoc",
"pydata_sphinx_theme",
"furo"
]
[project.urls]
Homepage = "https://rbinvariantslib.readthedocs.io/en/latest/"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
write_to = "rbinvariantslib/_version.py"