Convert into command line tool.
parent
d9fbf4ffc4
commit
f0a7c1c7ae
@ -0,0 +1 @@
|
|||||||
|
from .photo_to_kml import main
|
@ -0,0 +1,10 @@
|
|||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='photo_to_kml',
|
||||||
|
version='0.1.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')
|
Loading…
Reference in New Issue