-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (29 loc) · 1 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
from io import open
from setuptools import find_packages, setup
setup(
name="da_bert_score",
version='0.0.1',
author="Runzhe Zhan",
author_email="[email protected]",
description="Difficulty-Aware Machine Translation Evaluation implementation, ACL2021 (based on BERTScore)",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
license='MIT',
url="https://github.com/",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
install_requires=['torch>=1.0.0',
'numpy',
'pandas>=1.0.1',
'requests',
'tqdm>=4.31.1',
'matplotlib',
'transformers>=3.0.0'
],
entry_points={
'console_scripts': [
"da-bert-score=da_bert_score_cli.score:main",
]
},
python_requires='>=3.6'
)