generated from ltsaprounis/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 858 Bytes
/
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
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11", "numpy>=1.14"]
build-backend = "scikit_build_core.build"
[project]
name = "pycpp_experiments"
version = "0.0.1"
description = "A project for experimenting with python C++ bindings"
readme = "README.md"
requires-python=">=3.8,<3.11"
dependencies=[
"pybind11[global]>=2.6.0",
"numpy>=1.14",
]
# [tool.setuptools.packages]
# find = {}
[project.optional-dependencies]
dev = [
"flake8",
"black",
"pytest",
"pydocstyle",
"pre-commit",
"ipykernel",
]
[tool.pytest.ini_options]
addopts= "--ignore=pycpp/cpp/carma"
[tool.scikit-build]
# wheel.expand-macos-universal-tags = true
build-dir = "build"
logging.level = "INFO"
ninja.make-fallback = true
# This activates verbose builds
cmake.verbose = true
ninja.minimum-version = "1.5"
cmake.minimum-version = "3.25"