forked from lesingerouge/geograpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 947 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
"""Setup script for Geograpy Library."""
from setuptools import setup
"""Everything below is out of date, as of the fork by Thomas Shih"""
try:
import pypandoc
long_description = "Please check the README.md in https://github.com/ThomasShih/geograpy4."
except Exception as e:
print("Import Error: {}".format(e))
long_description = open('README.md').read()
setup(name='geograpy4',
version='1.0.2',
description='Extract locations from a URL or text and returns the geocoded data',
long_description=long_description,
url='https://github.com/ThomasShih/geograpy4',
download_url='https://github.com/ThomasShih/geograpy4',
author='Thomas Shih',
author_email='[email protected]',
license='MIT',
packages=['geograpy4'],
install_requires=['numpy', 'nltk', 'jellyfish', 'pycountry', 'newspaper3k','geopy'],
package_data={'geograpy4': ['data/*.csv']},
zip_safe=False)