-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chaosmagpy"
dynamic = ["version", "readme"]
dependencies = [
"numpy<=1.26",
"scipy",
"pandas",
"Cython",
"h5py",
"pyshp>=2.3.1",
"hdf5storage>=0.1.17"
]
requires-python = ">=3.6"
authors = [
{name = "Clemens Kloss", email = "[email protected]"}
]
maintainers = [
{name = "Clemens Kloss", email = "[email protected]"}
]
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",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Scientific/Engineering :: Physics"
]
[project.optional-dependencies]
full = [
"matplotlib>=3.6",
"lxml>=4.3.4"
]
[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"}