We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 915cf61 commit 7bbca26Copy full SHA for 7bbca26
1 file changed
src/pyproject.toml
@@ -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