-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·34 lines (29 loc) · 981 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="python-omgeo",
version="6.2.2",
description="Geocoding Library using ESRI, Google, Bing Maps, US Census, OpenStreetMap, Pelias, and MapQuest geocoders",
author="Azavea, Inc.",
author_email="[email protected]",
url="http://github.com/azavea/python-omgeo",
license="MIT",
long_description=read('README.rst'),
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: GIS',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3'
],
dependency_links=[],
install_requires=[
'requests >= 2.18',
],
test_suite='omgeo.tests.tests',
)