-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (31 loc) · 1.06 KB
/
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
"""#############################################################################
Copyright 2017 Hussein S. Al-Olimat, hussein@knoesis.org
This software is released under the GNU Affero General Public License (AGPL)
v3.0 License.
#############################################################################"""
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license_file = f.read()
setup(
name='LNEx',
version='1.1',
description='Location Name Extractor (LNEx): extracts location names from targeted text streams',
long_description=readme,
author='Hussein S. Al-Olimat',
author_email='hussein@knoesis.org',
url='https://github.com/halolimat/LNEx',
license=license_file,
packages=find_packages(exclude=('_Data')),
package_data={'LNEx': ['_Dictionaries/*.txt']},
install_requires=[
'elasticsearch',
'elasticsearch-dsl<2.0.0',
'nltk',
'geopy',
'texttable',
'wordsegment'
]
)