-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.43 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python>=0.14.0', 'numpy']
[project]
name = "pycdfpp"
description="A modern C++ header only cdf library"
authors = [{name="Alexis Jeandet", email="[email protected]"}]
summary = "A simple to use CDF files reader"
requires-python=">=3.8"
license = {file="COPYING"}
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ['numpy', 'pyyaml']
dynamic = [
'version',
]
[project.urls]
homepage = "https://github.com/SciQLop/CDFpp"
documentation = "https://pycdfpp.readthedocs.io/en/latest/"
repository = "https://github.com/SciQLop/CDFpp"
[tool.meson-python.args]
install = ['--tags=runtime,python-runtime']
setup = ['-Doptimization=3', '-Dcpp_std=c++17', '--force-fallback-for=libdeflate', '--vsenv']
[tool.cibuildwheel]
archs = ["auto"]
build-frontend = "default"
[tool.cibuildwheel.windows]
before-build = "python -m pip install delvewheel"
repair-wheel-command = "python -m delvewheel repair -v --add-path C:/Windows/System32 -w {dest_dir} {wheel}"