-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 967 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0",
"numpy>=2.0;python_version>='3.9'",
"oldest-supported-numpy;python_version<'3.9'"
]
build-backend = "setuptools.build_meta"
[project]
name = "healpix"
description = "Python package for HEALPix discretisation of the sphere"
readme = "README.md"
license = {text = "BSD-3-Clause"}
maintainers = [
{name = "Nicolas Tessore", email = "n.tessore@ucl.ac.uk"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"numpy",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/ntessore/healpix"
[project.optional-dependencies]
test = [
"pytest",
]
[tool.setuptools]
package-dir = {"" = "python"}
packages = ["healpix", "healpix.test"]
include-package-data = false
[tool.setuptools.dynamic.version]
attr = "healpix.__version__"