Skip to content

Commit f05b135

Browse files
authored
Merge pull request #36 from ssciwr/fix_missing_lib_dir_in_sdist
Remove lib from .gitignore so it is included in sdist
2 parents 979f9af + 09c2e2a commit f05b135

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ dist/
4747
downloads/
4848
eggs/
4949
.eggs/
50-
lib/
5150
lib64/
5251
parts/
5352
sdist/

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pybind11-numpy-example"
7-
version = "0.0.10"
7+
version = "0.0.11"
88
description = "An example of using numpy with pybind11"
99
readme = "README.md"
1010
license = {text = "MIT"}
1111
authors=[{name="Liam Keegan", email="[email protected]"}]
1212
maintainers=[{name="Liam Keegan", email="[email protected]"}]
1313
requires-python = ">=3.7"
14+
dependencies = ["numpy"]
1415
keywords = ["pybind11", "cibuildwheel", "c++", "pypi", "numpy", "simple", "example"]
1516
classifiers=[
1617
"Programming Language :: C++",
@@ -34,7 +35,7 @@ Github = "https://github.com/ssciwr/pybind11-numpy-example"
3435
Documentation = "https://pybind11-numpy-example.readthedocs.io"
3536

3637
[project.optional-dependencies]
37-
test = ["pytest", "numpy"]
38+
test = ["pytest"]
3839
docs = ["cmake", "breathe", "sphinx_rtd_theme"]
3940

4041
[tool.scikit-build.cmake.define]

0 commit comments

Comments
 (0)