forked from irit-melodi/attelo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 773 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
'''
attelo installation
'''
from setuptools import setup, find_packages
setup(name="attelo",
version="0.3",
author="IRIT Melodi team",
author_email="[email protected]",
packages=find_packages(exclude=["scripts",
"experiments",
"tests"]),
scripts=["scripts/attelo"],
install_requires=['depparse',
'enum34',
'joblib',
'mock',
'nltk',
'numpy',
'pydot',
'scikit-learn >= 0.17',
'six',
'scipy >= 0.14.0',
'tabulate'])