-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (32 loc) · 1.11 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
[project]
name = "pyside6qcustomplot"
readme = "README.md"
authors = [{ "name" = "Windel Bouwman", "email" = "[email protected]" }]
requires-python = ">=3.8"
dependencies = ["PySide6~=6.3.2"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
dynamic = ["version", "description"]
[build-system]
requires = ["py-build-cmake~=0.0.14"]
# It would be nice to install those, but they are downloaded from the qt.io mirror:
# "shiboken6~=6.3.2", "pyside6~=6.3.2", "shiboken6_generator~=6.3.2"
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
directory = "src-python"
[tool.py-build-cmake.sdist]
include = ["CMakeLists.txt", "src/*"]
[tool.py-build-cmake.cmake]
minimum_version = "3.18"
build_type = "Release"
generator = "Ninja"
source_path = "."
build_args = ["-j", "7"]