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
|
||||
|
||||
setup(
|
||||
name='photo_to_kml',
|
||||
version='0.2.0',
|
||||
packages=['photo_to_kml'],
|
||||
entry_points={'console_scripts':['photo_to_kml = photo_to_kml:main']},
|
||||
author='Dan Howe',
|
||||
author_email='d.howe@wrl.unsw.edu.au',
|
||||
description='Add geotagged images to a kml for viewing in Google Earth')
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='photo_to_kml',
|
||||
version='0.2.0',
|
||||
packages=['photo_to_kml', 'PIL'],
|
||||
install_requires=['simplekml'],
|
||||
entry_points={'console_scripts':['photo_to_kml = photo_to_kml:main']},
|
||||
author='Dan Howe',
|
||||
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