We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e5659 commit 7b3a205Copy full SHA for 7b3a205
MANIFEST.in
@@ -1,3 +1,6 @@
1
include versioneer.py
2
include readme.rst
3
+include CMakeLists.txt
4
+include CMakeRC.cmake
5
+recursive-include src *
6
recursive-include lib *.*
setup.py
@@ -81,5 +81,6 @@ def build_extension(self, ext):
81
],
82
python_requires=">=3.6",
83
ext_modules=[CMakeExtension(name="oead", sourcedir="py")],
84
+ data_files=[('data', [str(p) for p in Path('data').glob('**/*')])],
85
zip_safe=False,
86
)
0 commit comments