Skip to content

Commit

Permalink
Explicitly include *.so in wheel (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
delta003 authored Sep 11, 2023
1 parent d5aa05f commit edc15fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ poetry add -G dev ziggy-pydust
```diff title="pyproject.toml"
[tool.poetry]
name = "your-package"
+ include = [ { path = "src/", format = "sdist" } ]
packages = [ { include = "your-module" } ]
+ include = [ { path = "src/", format = "sdist" }, { path = "your-module/*.so", format = "wheel } ]

+ [tool.poetry.build]
+ script = "build.py"
Expand Down

0 comments on commit edc15fb

Please sign in to comment.