-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.29 KB
/
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
# reverse-geocoder <https://github.com/bezineb5/reverse-geocoder>
# Copyright 2018 Benjamin Bezine
# This file is part of reverse-geocoder.
#
# reverse-geocoder is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the licence, or
# (at your option) any later version, or the BSD licence.
#
# reverse-geocoder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See LICENCE for more details.
from distutils.core import setup
setup(name="reverse-geocoder",
version="0.2",
description="Reverse geocoding library for photos",
license="MIT",
author="Benjamin Bezine",
url="https://github.com/bezineb5/reverse-geocoder",
install_requires=[
"geopy>=2.0.0",
"pyexiftool>=0.5.4",
"requests>=2.23.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.5",
"Topic :: Multimedia"],
py_modules=["geocode"])