-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
45 lines (41 loc) · 1.08 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
[project]
name = "xraylib"
authors = [
{name="Tom Schoonjans", email="[email protected]"}
]
description = "pip-installable xraylib"
requires-python = "~=3.8"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy"
]
version = "4.1.5"
[project.urls]
repository = "https://github.com/tschoonj/xraylib"
documentation = "https://github.com/tschoonj/xraylib"
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', 'Cython', 'ninja', 'numpy']
[tool.meson-python.args]
setup = [
"-Ddefault_library=static",
"-Dpython-bindings=enabled",
"-Dpython-numpy-bindings=enabled",
"-Dfortran-bindings=disabled",
"--vsenv"
]
install = ['--tags=python-runtime']
[tool.cibuildwheel]
skip = ["*-win32", "*-manylinux_i686", "pp*", "*musllinux*"]
build-verbosity = 1
test-command = [
'python -c "import xraylib"',
'python -c "import xraylib_np"',
]
test-skip = "cp38-macosx_*:arm64"