-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 952 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 952 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
34
35
36
37
38
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright © 2019 Synaptics Incorporated.
[project]
name = "synap-python"
version = "0.9.0"
requires-python = ">=3.10"
authors = [{ "name" = "Sauryadeep Pal", "email" = "sauryadeep.pal@synaptics.com" }]
description = "Python bindings for SyNAP"
license = { "file" = "LICENSE" }
readme = "README.md"
dependencies = [
"numpy",
]
[build-system]
requires = ["py-build-cmake", "pybind11", "pybind11-stubgen"]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
name = "synap"
directory = "src"
[tool.py-build-cmake.sdist]
include = ["CMakeLists.txt", "src/*.cpp", "src/include/*.hpp", "extern/framework/lib/*"]
exclude = []
[tool.py-build-cmake.cmake]
minimum_version = "3.19"
build_type = "Release"
source_path = "."
args = ["-Wdev"]
build_args = ["-j"]
install_args = ["--verbose"]
install_components = ["python_modules"]
[tool.py-build-cmake.stubgen]
args = ["-v"]