-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.57 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
[build-system]
requires = [
"wheel",
"ninja",
"numpy",
"meson-python>=0.14.0",
"meson>=1.6,<1.11",
"shiboken6==6.11.0",
"pyside6==6.11.0",
"shiboken6_generator==6.11.0"
]
build-backend = 'mesonpy'
[project]
name = "SciQLopPlots"
description="SciQLop plot API based on QCustomPlot"
authors = [{name="Alexis Jeandet", email="alexis.jeandet@member.fsf.org"}]
summary = "SciQLop plot API based on QCustomPlot"
requires-python=">=3.10, <3.15"
license = {file="COPYING"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"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', 'pyside6==6.11.0', 'shiboken6==6.11.0']
dynamic = [
'version',
]
[project.optional-dependencies]
test = ["pytest", "pytest-qt", "pytest-timeout", "hypothesis", "python-dateutil", "numpy"]
[project.urls]
homepage = "https://github.com/SciQLop/SciQLopPlots"
[tool.meson-python.args]
install = ['--tags=runtime,python-runtime']
setup = ['-Doptimization=3', '-Dcpp_std=c++20', '-Dbuildtype=release', '--vsenv', '--unity=on']
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = ["tests/integration"]
[tool.cibuildwheel]
archs = ["auto"]
build-frontend = "default"