-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (38 loc) · 953 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
42
43
44
45
46
from distutils.core import setup
setup(
# Application name:
name="collection_geo_locate",
# Version number (initial):
version="0.1.0",
# Application author details:
author="Hack The Deep",
author_email="[email protected]",
# Packages
packages=["see requirements.txt"],
# Include additional files into the package
include_package_data=True,
#
# license="LICENSE.txt",
description="Get latitude and longetude from text based address data",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=[
"bingmaps",
"certifi",
"chardet",
"click",
"decorator",
"future",
"geocoder",
"googlemaps",
"idna",
"marshmallow",
"ratelim",
"requests",
"six",
"urllib3",
"python-dateutil",
"pyodbc",
"xmltodict"
],
)