Skip to content

Commit

Permalink
Specify package_data in setup.py and remove MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
vsnever committed Sep 11, 2024
1 parent 18d3f32 commit 3321d6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={"": [
"**/*.pyx", "**/*.pxd", # Needed to build Cython extensions.
],
},
include_package_data=True,
install_requires=["raysect==0.8.1.*", "cherab==1.5.*"],
ext_modules=cythonize(extensions, force=force, compiler_directives=cython_directives),
Expand Down

0 comments on commit 3321d6c

Please sign in to comment.