forked from facebookresearch/SimulEval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 820 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
34
35
36
37
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
import setuptools
setuptools.setup(
python_requires='>3.7.0',
name="simuleval",
version="1.0.2",
author="Xutai Ma",
entry_points={
'console_scripts': [
'simuleval = simuleval.cli:main',
],
},
install_requires=[
"pytest",
"pytest-cov",
"sacrebleu",
"torch",
"tornado",
"soundfile",
"requests",
"pytest-flake8"
],
package=setuptools.find_packages(
exclude=[
"examples",
"examples.*",
"docs",
"docs.*",
]
)
)