diff --git a/setup_mcedit2.py b/setup_mcedit2.py index 427721b..816f990 100644 --- a/setup_mcedit2.py +++ b/setup_mcedit2.py @@ -57,7 +57,7 @@ setup(name='mcedit2', author_email='codewarrior0@gmail.com', url='https://github.com/mcedit/mcedit2', license='MIT License', - packages=find_packages('src', include="mcedit2*"), + packages=find_packages('src', include=["mcedit2*",]), package_dir={'': 'src'}, ext_modules=mcedit2_ext_modules, include_dirs=include_dirs, diff --git a/setup_mceditlib.py b/setup_mceditlib.py index c0d1fdc..f9d3ddb 100644 --- a/setup_mceditlib.py +++ b/setup_mceditlib.py @@ -47,7 +47,7 @@ setup(name='mceditlib', author_email='codewarrior0@gmail.com', url='https://github.com/mcedit/mcedit2', license='MIT License', - packages=find_packages('src', include="mceditlib*"), + packages=find_packages('src', include=["mceditlib*"]), package_dir={'': 'src'}, ext_modules=mceditlib_ext_modules, include_dirs=include_dirs,