File size: 934 Bytes
901e06a | 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 38 39 40 41 42 43 44 | # 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.*",
]
),
)
|