forked from irit-melodi/educe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 724 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 724 Bytes
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
"""
educe setup: educe is a library for managing and navigating a
variety of discourse corpora
"""
from setuptools import setup, find_packages
import glob
import os
import sys
PY3 = sys.version > '3'
REQS = [
'enum34',
'funcparserlib' if PY3 else 'funcparserlib == 0.3.6',
'pydot' if PY3 else 'pydot >= 1.0.28',
'python-graph-core',
'python-graph-dot',
'frozendict',
'six',
'tabulate',
'nltk >= 3.0.0',
'soundex',
'pandas >= 0.17',
]
setup(name='educe',
version='0.3',
author='Eric Kow',
author_email='eric@erickow.com',
packages=find_packages(),
scripts=[f for f in glob.glob('scripts/*') if not os.path.isdir(f)],
install_requires=REQS)