-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
79 lines (68 loc) · 1.75 KB
/
pyproject.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "fish-speech-gui"
version = "1.4.5"
description = "fish-speech comfortable GUI"
readme = "README.md"
requires-python = "<3.12,>=3.10"
license = {text = "MIT"}
keywords = ["text-to-speech", "tts"]
authors = [
{name = "lengyue", email = "[email protected]"},
{name = "AnyaCoder", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"noisereduce>=2.0.1",
"sounddevice==0.4.6",
"soundfile==0.12.1",
"pyaudio==0.2.14",
"pyyaml>=6.0",
"PyQt6==6.5.0",
"pyqt6-qt6==6.5.1",
"pyqt6-sip==13.5.1",
"pyqtdarktheme==2.1.0",
"requests>=2.31.0",
"pydantic==2.9.2",
"ormsgpack==1.5.0",
"numpy==1.24.3",
"psutil>=6.1.0",
"loguru>=0.7.2",
"httpx==0.27.2",
]
[project.urls]
repository = "https://github.com/AnyaCoder/fish-speech-gui"
[project.gui-scripts]
fish = "main:main"
[tool.pdm]
distribution = true
[tool.setuptools]
packages=["fish"]
[tool.pdm.build]
packages = { find = { include = ["fish*"], exclude = ["assets", "locales"] } }
[tool.pdm.dev-dependencies]
dev = [
"isort>=5.12.0",
"black>=23.3.0",
"pytest==7.3.1",
"pyinstaller>=5.11.0",
"nuitka>=2.4.11",
]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pdm.scripts]
lint = { shell = "black . && isort ." }
lint-check = { shell = "black --check . && isort --check ." }
test = { shell = "PYTHONPATH=. pytest -n=auto -q tests" }
docs = { shell = "sphinx-autobuild docs docs/_build/html" }
[[tool.pdm.source]]
type = "find_links"
name = "torch-cpu"
url = "https://download.pytorch.org/whl/cpu"
verify_ssl = true
[tool.isort]
profile = "black"
extend_skip = ["dataset", "logs"]