-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.67 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
57
58
[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="alexis.jeandet@member.fsf.org"}]
summary = "A simple to use CDF files reader"
requires-python=">=3.9"
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",
"Programming Language :: Python :: 3.14",
]
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++20', '--force-fallback-for=libdeflate,fmt,pybind11', '--vsenv']
[tool.cibuildwheel]
archs = ["auto"]
build-frontend = "default"
enable="cpython-freethreading"
[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}"
[tool.bumpversion]
current_version = "0.9.3"
commit = true
tag = true
tag_name = "v{new_version}"
[[tool.bumpversion.files]]
filename = "version.txt"