Skip to content

Commit d68f447

Browse files
committed
Resolve pypi upload issue
1 parent ad409bd commit d68f447

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global-include *.py *.pyx *.pxd *.cpp *.hpp *.h *.c *.txt *.dat *.rst *.md Makefile

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def setup_package():
131131
setup(
132132
ext_modules = cythonize(extensions),
133133
name = "PostMeshPy",
134-
version = "1.6",
134+
version = "1.6.1",
135135
description = "A Python wrapper for PostMesh - a high order curvilinear mesh generator based on OpenCascade",
136136
long_description=long_description,
137137
long_description_content_type="text/markdown",
@@ -143,6 +143,9 @@ def setup_package():
143143
'numpy>=1.9',
144144
'cython>=0.23'],
145145
packages=find_packages(),
146+
include_package_data=True,
147+
package_data={'': ['bindings/*','src/*','include/*','example/*',
148+
'*.pyx', '*.pxd', '*.h', '*.hpp', '*.c', '*.cpp', 'Makefile']},
146149
extra_files = "LICENSE.md"
147150
)
148151

0 commit comments

Comments
 (0)