forked from npat-efault/ppgplot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.3 KB
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
# https://numpy.org/devdocs/dev/depending_on_numpy.html#numpy-2-abi-handling
[build-system]
requires = ["setuptools>=45", "numpy>=2.0.0rc1", "pkgconfig", "wheel", "cibuildwheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-pgplot"
version = "1.6.1"
description = "Python bindings for PGPLOT"
authors = [
{name = "Marjolein Verkouter", email = "verkouter@jive.eu"},
{name = "Nick Patavalis" },
{name = "MA Breddels" },
{name = "C Bassa" }
]
maintainers = [
{name = "Marjolein Verkouter", email = "verkouter@jive.eu"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.19.0",
# "pkgconfig"
]
license = "LGPL-2.0-only"
license-files = [
"LICENSE",
"AUTHORS"
]
[external]
build-requires = [
"virtual:compiler/c",
"pkg:generic/pkg-config",
"pkg:generic/giza",
]
host-requires = [
"pkg:generic/giza",
]
dependencies = [
"pkg:generic/giza",
]
[project.urls]
Homepage = "https://github.com/haavee/ppgplot"
[tool.setuptools]
packages = ["ppgplot"]
package-dir = {"ppgplot" = "src"}
[tool.cibuildwheel]
# Test that giza is available
before-build = "pkg-config --exists giza && echo 'giza found' || echo 'giza NOT found'"
# Not on Windhoos, nor on musllinux (wtf)
# No numpy2 on Py3.8
skip = ["*-win*", "*musllinux*", "cp38-*" ]