generated from pybind/scikit_build_example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.12 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build>=0.13",
"ninja",
"pybind11",
]
build-backend = "setuptools.build_meta"
[project]
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
# https://peps.python.org/pep-0621/
name = "example-python-extension-cpp"
authors = [{ name = "Andreu Gimenez", email = "esdandreu@gmail.com" }]
description = "A minimal C++ extension using pybind11 and vcpkg"
readme = "README.md"
license = { text = "BSD 3-Clause License" }
requires-python = ">=3.7"
keywords = ["example", "vcpkg", "pybind11", "scikit-build", "cpp"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/esdandreu/python-extension-cpp"
repository = "https://github.com/esdandreu/python-extension-cpp"
[project.optional-dependencies]
# When adding `[test]` to your `pip install` command you can install the extra
# dependencies associated with testing. Example `pip install .[test]`
# https://setuptools.pypa.io/en/latest/userguide/dependency_management.html#optional-dependencies
test = ["pytest"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]