Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python-version: 3.12

- name: Install Dependencies 📦
run: pip install -r requirements.txt
run: pip3 install -r requirements.txt

- name: Build and Install Python Extension 🛠️
run: pip3 install src/
Expand Down
21 changes: 21 additions & 0 deletions src/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=45", "wheel", "Cython>=0.29"]
build-backend = "setuptools.build_meta"

[project]
name = "cpp-python-extension"
version = "1.0.0"
description = "Example module written in C++ with Python bindings"
requires-python = ">=3.8"
dependencies = [
"Cython>=0.29",
]

[project.optional-dependencies]
dev = [
"pytest",
"pytest-benchmark",
]

[tool.setuptools]
packages = []