Skip to content

Commit

Permalink
fix: include .pxd interface files in pypi package (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Nov 22, 2024
1 parent 2cf8bdf commit 4fc7c9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include a_sync *.pxd
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
setup_requires=["setuptools_scm", "cython"],
python_requires=">=3.8,<3.13",
package_data={
"a_sync": ["py.typed"],
"a_sync": ["py.typed", "*.pxd", "**/*.pxd"],
},
include_package_data=True,
ext_modules=cythonize(
"a_sync/**/*.pyx",
compiler_directives={
Expand Down

0 comments on commit 4fc7c9d

Please sign in to comment.