From 16c75a0060b61ffd24989633b14e437eba5f7d82 Mon Sep 17 00:00:00 2001 From: Dan Howe Date: Thu, 19 Apr 2018 21:50:12 +1000 Subject: [PATCH] Fix PIL dependency --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ccf4214..4e99fcb 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ from setuptools import setup setup( name='photo_to_kml', version='0.2.0', - packages=['photo_to_kml', 'PIL'], - install_requires=['simplekml'], + packages=['photo_to_kml'], + install_requires=['simplekml', 'Pillow'], entry_points={'console_scripts':['photo_to_kml = photo_to_kml:main']}, author='Dan Howe', author_email='d.howe@wrl.unsw.edu.au',