-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.2 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
[build-system]
requires = ["meson-python", "numpy"]
build-backend = "mesonpy"
[project]
name = "pyspharm"
version = "1.0.9"
description = "Python Spherical Harmonic Transform Module"
authors = [
{ name = "Jeff Whitaker", email = "jeffrey.s.whitaker@noaa.gov" }
]
readme = "README.md"
license = { file = "LICENSE.spherepack" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
dependencies = [ "numpy" ]
keywords = ["spherical harmonic transform"]
requires-python = ">=3.8"
[project.urls]
Homepage = "http://github.com/jswhit/pyspharm"
Repository = "https://github.com/jswhit/pyspharm"
[project.optional-dependencies]
tests = ["pytest", "hypothesis[numpy]"]
examples = ["basemap", "matplotlib"]
[tool.setuptools]
packages = [ "spharm" ]
package-dir = { spharm = "Lib" }