-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (72 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
78 lines (72 loc) · 2.17 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chaosmagpy"
dynamic = ["version", "readme"]
dependencies = [
"numpy; python_version <= '3.11'",
"numpy>=2; python_version >= '3.12'",
"scipy",
"pandas",
"Cython",
"h5py",
"pyshp>=2.3.1",
"hdf5storage; python_version <= '3.11'",
"hdf5storage>=0.2; python_version >= '3.12'",
]
requires-python = ">=3.6"
authors = [
{name = "Clemens Kloss", email = "ancklo@space.dtu.dk"}
]
maintainers = [
{name = "Clemens Kloss", email = "ancklo@space.dtu.dk"}
]
description = "Evaluates the CHAOS geomagnetic field model and other models of Earth's magnetic field."
license = {file = "LICENSE"}
keywords = [
"CHAOS",
"geomagnetic field",
"spherical harmonics model",
"secular variation",
"core field",
"crustal field",
"magnetospheric field"
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics"
]
[project.optional-dependencies]
full = [
"matplotlib; python_version <= '3.7'",
"matplotlib>=3.6; python_version >= '3.8'",
"lxml>=4.3.4",
"apexpy>=2.1.0",
]
[project.urls]
Homepage = "https://github.com/ancklo/ChaosMagPy"
Documentation = "https://chaosmagpy.readthedocs.io/en/"
Repository = "https://github.com/ancklo/ChaosMagPy.git"
Issues = "https://github.com/ancklo/ChaosMagPy/issues"
Changelog = "https://github.com/ancklo/ChaosMagPy/blob/master/CHANGELOG.rst"
[tool.setuptools.packages.find]
include = ["chaosmagpy*"]
exclude = ["data*"]
namespaces = true
[tool.setuptools.package-data]
"chaosmagpy.lib" = ["*"]
[tool.setuptools.dynamic]
version = {attr = "chaosmagpy.__version__"}
readme = {file = ["README.rst", "CITATION", "INSTALL.rst"], content-type = "text/x-rst"}