forked from speechbrain/speechbrain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 951 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
#!/usr/bin/env python3
import os
import setuptools
from distutils.core import setup
with open("README.md") as f:
long_description = f.read()
with open(os.path.join("speechbrain", "version.txt")) as f:
version = f.read().strip()
setup(
name="speechbrain",
version=version,
description="All-in-one speech toolkit in pure Python and Pytorch",
long_description=long_description,
long_description_content_type="text/markdown",
author="Mirco Ravanelli & Others",
author_email="speechbrain@gmail.com",
packages=setuptools.find_packages(),
package_data={"speechbrain": ["version.txt", "log-config.yaml"]},
install_requires=[
"hyperpyyaml",
"joblib",
"numpy",
"packaging",
"scipy",
"sentencepiece",
"torch",
"torchaudio",
"tqdm",
"huggingface_hub",
],
python_requires=">=3.7",
url="https://speechbrain.github.io/",
)