-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
50 lines (44 loc) · 1.52 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
[project]
name = "planetMagFields"
version = "1.5.2"
authors = [
{ name="Ankit Barik", email="ankit.barik@gmail.com" },
]
maintainers = [
{ name="Ankit Barik", email="ankit.barik@gmail.com" },
{ name="Regupathi Angappan", email="rangapp1@jhu.edu" },
]
description = "Routines to easily access information about magnetic fields of planets in our solar system and visualize them in both 2D and 3D"
keywords = ['Spherical Harmonics','Planetary Science','Spectra','Magnetic Field','Visualization','3D visualization']
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"numpy",
"scipy",
"matplotlib"
]
[project.optional-dependencies]
map = ["cartopy"]
potextra=["shtns"]
[project.urls]
Homepage = "https://ankitbarik.github.io/planetMagFields/"
Issues = "https://github.com/AnkitBarik/planetMagFields/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true