26 lines
631 B
TOML
26 lines
631 B
TOML
[project]
|
|
version = "1.0"
|
|
requires-python = ">= 3.8"
|
|
name = "pysphereproj"
|
|
dependencies = [
|
|
"numpy"
|
|
]
|
|
authors = [
|
|
{ name = "Guilhem Lavaux", email = "guilhem.lavaux@iap.fr" }
|
|
]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.aquila-consortium.org/guilhem_lavaux/pysphereproj"
|
|
Issues = "https://git.aquila-consortium.org/guilhem_lavaux/pysphereproj/issues"
|
|
|
|
[build-system]
|
|
requires = ["setuptools >= 61.0", "numpy", "wheel", "Cython"]
|
|
build-backend = "setuptools.build_meta"
|
|
|