forked from tschoonj/xraylib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 856 Bytes
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
[project]
authors = [
{name="Tom Schoonjans", email="[email protected]"}
]
description = "pip-installable xraylib"
requires-python = "~=3.7"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy"
]
[project.urls]
repository = "https://github.com/tschoonj/xraylib"
documentation = "https://github.com/tschoonj/xraylib"
[build-system]
requires = ["mesonpep517", "ninja", "Cython", "numpy"]
build-backend = "mesonpep517.buildapi"
[tool.mesonpep517.metadata]
meson-python-option-name = "python"
meson-options = [
"-Ddefault_library=static",
"-Dpython-bindings=enabled",
"-Dpython-numpy-bindings=enabled"
]
summary = "pip-installable xraylib"