-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.4 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
[build-system]
build-backend = 'mesonpy'
requires = [
"wheel",
"meson-python>=0.12.0",
"setuptools<60.0", # Do not increase, 60.0 enables vendored distutils
"Cython>=0.29.21",
"ninja",
"numpy"
]
[project]
name = "OMMBV"
version = "1.1.0"
license = {file = "LICENSE"}
description = "Orthogonal geomagnetic vector basis and field-line mapping for multipole magnetic fields."
maintainers = [
{name = "Russell Stoneback", email = "contact@cosmicstudio.io"}
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"scipy"
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD 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",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: MacOS"
]
keywords = [
"vector-basis",
"geomagnetic-field",
"magnetic-fields",
"field-line-tracing",
"meridional",
"zonal",
"field-aligned",
"satellite",
"electric-field-mapping",
"ion-drift-mapping",
"multipole",
"electrodynamics",
"plasma"
]