forked from AgnieszkaFalenska/IMSnPars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 863 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
32
33
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='imsnpars',
version='0.1.0',
description=' IMS Neural Dependency Parser',
author='Agnieszka Faleńska',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
install_requires=[
'dvc==1.6.6',
'dynet @ git+https://github.com/clab/dynet@7c533e#egg=dynet',
'networkx==2.4',
'conllu==3.1.1',
'Click==7.1.2',
'psutil==5.7.2',
'ray==0.8.7',
'boltons==20.2.1'
],
extras_require={
'test': [
'pytest',
'autoflake',
'flake8'
]
},
entry_points={
'console_scripts': [
'ims-nparser = imsnpars.cli:main',
],
})