-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (37 loc) · 951 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='photos2geojson',
version='1.3',
description="Makes geojson from EXIF data.",
author="Visgean Skeloru",
author_email='[email protected]',
url='https://github.com/visgean/photos2geojson',
packages=[
'photos2geojson',
],
package_dir={'photos2geojson': 'photos2geojson'},
license="MIT",
keywords='photos geojson exif',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
install_requires=[
'requests',
'exifread',
],
entry_points={
'console_scripts': [
'photos2geojson = photos2geojson.main:main'
]
},
package_data={
'photos2geojson': ['*.html']
},
)