forked from SHTOOLS/SHTOOLS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
67 lines (62 loc) · 1.76 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
[project]
name = 'pyshtools'
dynamic = [
'version',
]
description = 'SHTOOLS - Spherical Harmonic Tools'
readme = 'README.md'
license = { text = 'BSD-3-Clause' }
requires-python = '>=3.6'
keywords = ['Spherical Harmonics', 'Spectral Estimation', 'Slepian Functions',
'Legendre Functions', 'Gravity Field', 'Magnetic Field']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Fortran',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
]
authors = [
{ name = 'The SHTOOLS developers', email = '[email protected]' },
]
dependencies = [
'numpy',
'scipy>=0.14.0',
'matplotlib>=3.3',
'astropy>=4.0',
'xarray',
'requests',
'pooch>=1.1',
'tqdm',
]
[project.urls]
homepage = 'https://shtools.github.io/SHTOOLS/'
download = 'https://github.com/SHTOOLS/SHTOOLS/zipball/master'
[project.optional-dependencies]
cartopy = ['cython', 'pyshp', 'six', 'shapely', 'cartopy>=0.18.0']
pygmt = ['pygmt>=0.3']
palettable = ['palettable>=3.3']
ducc = ['ducc0>=0.15']
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python>=0.14',
'oldest-supported-numpy',
'setuptools>=64',
'setuptools_scm>=8',
]
[tool.meson-python.args]
setup = ['--default-library=static']
install = ['--tags=doc,python-runtime,runtime']
[tool.setuptools_scm]
version_scheme = 'no-guess-dev'
local_scheme = 'dirty-tag'