StreamSpeech / SimulEval /setup.py
fasdfsa's picture
init
901e06a
# 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.1.0",
author="Xutai Ma",
entry_points={
"console_scripts": [
"simuleval = simuleval.cli:main",
],
},
install_requires=[
"pytest",
"pytest-cov",
"sacrebleu==2.3.1",
"tornado",
"soundfile",
"pandas",
"requests",
"pytest-flake8",
"textgrid",
"tqdm==4.64.1",
"pyyaml",
"bitarray==2.6.0",
"yt-dlp",
"pydub",
],
package=setuptools.find_packages(
exclude=[
"examples",
"examples.*",
"docs",
"docs.*",
]
),
)