-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 684 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 684 Bytes
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
from setuptools import setup, find_packages
setup(
name="liteclm",
version="0.1.0",
description="Lightweight codec language model for TTS",
author="许倪",
packages=find_packages(exclude=["tests*", "scripts*"]),
python_requires=">=3.9",
install_requires=[
"torch>=2.0.0",
"torchaudio>=2.0.0",
"encodec>=0.1.1",
"transformers>=4.35.0",
"pyyaml>=6.0",
"numpy>=1.24.0",
"tqdm>=4.65.0",
"einops>=0.6.1",
"soundfile>=0.12.1",
],
extras_require={
"zh": ["pypinyin>=0.49.0"],
"en": ["phonemizer>=3.2.1"],
"dev": ["pytest>=7.0", "librosa>=0.10.0"],
},
)