Fix incorrect find_packages globs

This commit is contained in:
David Vierra 2016-09-10 15:59:49 -10:00
parent e4a581a488
commit 84b8bb3de6
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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,