Change install method to 'pip', instead of 'easy_install'
parent
b142bb68c1
commit
b424649335
@ -1 +1 @@
|
|||||||
from .photo_to_kml import main
|
from .photo_to_kml import main
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='photo_to_kml',
|
name='photo_to_kml',
|
||||||
version='0.2.0',
|
version='0.2.0',
|
||||||
packages=['photo_to_kml'],
|
packages=['photo_to_kml', 'PIL'],
|
||||||
entry_points={'console_scripts':['photo_to_kml = photo_to_kml:main']},
|
install_requires=['simplekml'],
|
||||||
author='Dan Howe',
|
entry_points={'console_scripts':['photo_to_kml = photo_to_kml:main']},
|
||||||
author_email='d.howe@wrl.unsw.edu.au',
|
author='Dan Howe',
|
||||||
description='Add geotagged images to a kml for viewing in Google Earth')
|
author_email='d.howe@wrl.unsw.edu.au',
|
||||||
|
description='Add geotagged images to a kml for viewing in Google Earth')
|
||||||
|
Loading…
Reference in New Issue