Prompt48 commited on
Commit
b107bc5
·
verified ·
1 Parent(s): 727a9a0

Upload edit\Qwen3-TTS-test\pyproject.toml with huggingface_hub

Browse files
edit//Qwen3-TTS-test//pyproject.toml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "qwen-tts"
7
+ version = "0.1.1"
8
+ description = "Qwen-TTS python package"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "Programming Language :: Python :: 3.9",
14
+ "Programming Language :: Python :: 3.10",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ ]
19
+ license = { text = "Apache-2.0" }
20
+ authors = [{ name = "Alibaba Qwen Team" }]
21
+
22
+ dependencies = [
23
+ "transformers==4.57.3",
24
+ "accelerate==1.12.0",
25
+ "gradio",
26
+ "librosa",
27
+ "torchaudio",
28
+ "soundfile",
29
+ "sox",
30
+ "onnxruntime",
31
+ "einops",
32
+ ]
33
+
34
+ [project.urls]
35
+ Homepage = "https://github.com/Qwen/Qwen3-TTS"
36
+ Repository = "https://github.com/Qwen/Qwen3-TTS"
37
+
38
+ [project.scripts]
39
+ qwen-tts-demo = "qwen_tts.cli.demo:main"
40
+
41
+ [tool.setuptools]
42
+ packages = { find = { where = ["."] , include = ["qwen_tts*"] } }
43
+ include-package-data = true
44
+
45
+ [tool.setuptools.package-data]
46
+ qwen_tts = ["py.typed", "**/*.npz"]