We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3ac10 commit 6674329Copy full SHA for 6674329
2 files changed
.github/workflows/test.yml
@@ -27,7 +27,7 @@ jobs:
27
python-version: 3.12
28
29
- name: Install Dependencies 📦
30
- run: pip install -r requirements.txt
+ run: pip3 install -r requirements.txt
31
32
- name: Build and Install Python Extension 🛠️
33
run: pip3 install src/
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