-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
22 lines (21 loc) · 937 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
from setuptools import setup, find_packages
setup(name='geopy',
version='0.93-f1',
description='Python Geocoding Toolbox',
author='Brian Beck',
author_email='[email protected]',
url='https://github.com/ulope/geopy',
download_url='git://github.com/ulope/geopy.git',
packages=find_packages(),
license='MIT',
keywords='geocode geocoding gis geographical maps earth distance',
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)