-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
64 lines (55 loc) · 1.36 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
[project]
name = "rtvc"
version = "0.2.0"
description = "Real-Time Voice Conversion GUI"
readme = "README.md"
requires-python = ">=3.10,<3.12"
license = {text = "MIT"}
keywords = ["voice-conversion", "svc"]
authors = [
{name = "lengyue", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"noisereduce>=2.0.1",
"sounddevice>=0.4.6",
"pyyaml>=6.0",
"PyQt6>=6.5.0",
"pyqtdarktheme==2.1.0",
"requests>=2.31.0",
"librosa==0.9.2",
]
[project.urls]
repository = "https://github.com/fishaudio/realtime-vc-gui"
[project.gui-scripts]
rtvc = "rtvc.__main__:main"
[tool.pdm]
[tool.pdm.build]
includes = ["rtvc"]
[tool.pdm.dev-dependencies]
dev = [
"isort>=5.12.0",
"black>=23.3.0",
"pytest>=7.3.1",
"torch>=2.0.1",
"pyinstaller>=5.11.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[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"]