From 545154a61f964316937dbc9bb6c72f4284c636f9 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 7 Sep 2015 19:24:39 +1000 Subject: [PATCH] Corrected scripts path --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 02baf8c12..c09891c61 100644 --- a/setup.py +++ b/setup.py @@ -751,7 +751,7 @@ setup( ext_modules=[Extension("PIL._imaging", ["_imaging.c"])], include_package_data=True, packages=find_packages(), - scripts=glob.glob("Scripts/pil*.py"), + scripts=glob.glob("Scripts/*.py"), test_suite='nose.collector', keywords=["Imaging", ], license='Standard PIL License',