Skip to content

Commit 7bbca26

Browse files
committed
Add pyproject.toml
1 parent 915cf61 commit 7bbca26

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[build-system]
2+
requires = ["setuptools>=45", "wheel", "Cython>=0.29"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "cpp-python-extension"
7+
version = "1.0.0"
8+
description = "Example module written in C++ with Python bindings"
9+
requires-python = ">=3.8"
10+
dependencies = [
11+
"Cython>=0.29",
12+
]
13+
14+
[project.optional-dependencies]
15+
dev = [
16+
"pytest",
17+
"pytest-benchmark",
18+
]
19+
20+
[tool.setuptools]
21+
packages = []

0 commit comments

Comments
 (0)