-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
48 lines (45 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
import os
import io
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
root = os.path.dirname(__file__)
with open(os.path.join(root, 'epitator', 'version.py')) as f:
exec(f.read())
with io.open(os.path.join(root, 'README.rst'), encoding='utf8') as f:
readme = f.read()
setup(
name='EpiTator',
version=__version__,
packages=['epitator', 'epitator.importers',],
description = 'Annotators for extracting epidemiological information from text.',
long_description=readme,
author = 'EcoHealth Alliance',
author_email = '[email protected]',
url = 'https://github.com/ecohealthalliance/EpiTator',
keywords = 'nlp information extraction case counts death counts '
'count extraction date extraction epidemiology '
'keyword resolution toponym resolution '
'disease resolution species resolution '
'geoannotation geoname resolution',
install_requires=[
'dateparser==0.7.1',
'geopy>=1.11.0',
'unicodecsv>=0.14.1',
'spacy==2.1.8',
'pyparsing==2.2.0',
'numpy>=1.16.1',
'rdflib>=4.2.2',
'python-dateutil>=2.6.0',
'regex==2018.01.10',
'six'],
classifiers=[
'Topic :: Text Processing',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License']
)