-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 751 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 751 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
"""Setup."""
from setuptools import find_packages, setup
REQUIREMENTS = [
'absl-py==0.9.0',
'allennlp==1.2.0',
'conllu==2.3.2',
'dataclasses;python_version<"3.7"',
'dataclasses-json==0.5.2',
'joblib==0.14.1',
'jsonnet==0.15.0',
'requests==2.23.0',
'overrides==3.1.0',
'tensorboard==2.1.0',
'torch==1.6.0',
'tqdm==4.43.0',
'transformers>=3.4.0,<3.5',
'urllib3>=1.25.11',
]
setup(
name='COMBO',
version='0.0.1',
install_requires=REQUIREMENTS,
packages=find_packages(exclude=['tests']),
setup_requires=['pytest-runner', 'pytest-pylint'],
tests_require=['pytest', 'pylint'],
python_requires='>=3.6',
entry_points={'console_scripts': ['combo = combo.main:main']},
)