Only install scripts starting with "pil"

This reverts 545154a61f.
This avoids a file collision with cgkit.

Bug: https://bugs.gentoo.org/600694
This commit is contained in:
Mike Gilbert 2016-11-26 13:23:44 -05:00
parent 06895b6fa4
commit 25f921294d

View File

@ -769,7 +769,7 @@ try:
ext_modules=[Extension("PIL._imaging", ["_imaging.c"])], ext_modules=[Extension("PIL._imaging", ["_imaging.c"])],
include_package_data=True, include_package_data=True,
packages=find_packages(), packages=find_packages(),
scripts=glob.glob("Scripts/*.py"), scripts=glob.glob("Scripts/pil*.py"),
test_suite='nose.collector', test_suite='nose.collector',
keywords=["Imaging", ], keywords=["Imaging", ],
license='Standard PIL License', license='Standard PIL License',