forked from Corollarium/geograpy2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 897 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
from setuptools import setup
import os
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(name='geograpy2',
version='0.1.0',
description='Extract countries, regions and cities from a URL or text',
long_description=long_description,
url='https://github.com/Corollarium/geograpy2',
download_url ='https://github.com/Corollarium/geograpy2',
author='Corollarium',
author_email='email@corollarium.com',
license='MIT',
packages=['geograpy2'],
install_requires=[
'numpy',
'nltk',
'newspaper',
'jellyfish',
'pycountry'
],
scripts=['geograpy/bin/geograpy-nltk'],
package_data = {
'geograpy': ['data/*.csv'],
},
zip_safe=False)