Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 18635ba

Browse files
authoredApr 25, 2023
Merge pull request #28 from neebyA/master
Add required files to sdist
2 parents d7e5659 + 7b3a205 commit 18635ba

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
include versioneer.py
22
include readme.rst
3+
include CMakeLists.txt
4+
include CMakeRC.cmake
5+
recursive-include src *
36
recursive-include lib *.*

‎setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,6 @@ def build_extension(self, ext):
8181
],
8282
python_requires=">=3.6",
8383
ext_modules=[CMakeExtension(name="oead", sourcedir="py")],
84+
data_files=[('data', [str(p) for p in Path('data').glob('**/*')])],
8485
zip_safe=False,
8586
)

0 commit comments

Comments
 (0)
Please sign in to comment.