Fix incorrect find_packages globs
This commit is contained in:
parent
e4a581a488
commit
84b8bb3de6
@ -57,7 +57,7 @@ setup(name='mcedit2',
|
|||||||
author_email='codewarrior0@gmail.com',
|
author_email='codewarrior0@gmail.com',
|
||||||
url='https://github.com/mcedit/mcedit2',
|
url='https://github.com/mcedit/mcedit2',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
packages=find_packages('src', include="mcedit2*"),
|
packages=find_packages('src', include=["mcedit2*",]),
|
||||||
package_dir={'': 'src'},
|
package_dir={'': 'src'},
|
||||||
ext_modules=mcedit2_ext_modules,
|
ext_modules=mcedit2_ext_modules,
|
||||||
include_dirs=include_dirs,
|
include_dirs=include_dirs,
|
||||||
|
@ -47,7 +47,7 @@ setup(name='mceditlib',
|
|||||||
author_email='codewarrior0@gmail.com',
|
author_email='codewarrior0@gmail.com',
|
||||||
url='https://github.com/mcedit/mcedit2',
|
url='https://github.com/mcedit/mcedit2',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
packages=find_packages('src', include="mceditlib*"),
|
packages=find_packages('src', include=["mceditlib*"]),
|
||||||
package_dir={'': 'src'},
|
package_dir={'': 'src'},
|
||||||
ext_modules=mceditlib_ext_modules,
|
ext_modules=mceditlib_ext_modules,
|
||||||
include_dirs=include_dirs,
|
include_dirs=include_dirs,
|
||||||
|
Reference in New Issue
Block a user