-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (62 loc) · 1.9 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "PolUVR"
version = "1.3.4"
description = "Easy to use audio stem separation with a UI, using various models from UVR trained primarily by @Anjok07"
authors = ["Politrees <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "PolUVR"}]
include = ["PolUVR/separator/models.json"]
homepage = "https://github.com/Bebra777228/PolUVR"
repository = "https://github.com/Bebra777228/PolUVR"
documentation = "https://github.com/Bebra777228/PolUVR/blob/main/README.md"
keywords = ["audio", "sound", "karaoke"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.10"
requests = ">=2"
numpy = ">=1.23,<2"
librosa = ">=0.10"
samplerate = "0.1.0"
six = ">=1.16"
torch = "*"
tqdm = "*"
pydub = ">=0.25"
onnx = ">=1.14"
onnx2torch = ">=1.5"
onnxruntime = { version = ">=1.17", optional = true }
onnxruntime-gpu = { version = ">=1.17", optional = true }
julius = ">=0.2"
diffq-fixed = { version = ">=0.2", platform = "win32" }
diffq = { version = ">=0.2", platform = "!=win32" }
einops = ">=0.7"
pyyaml = "*"
ml_collections = "*"
resampy = ">=0.4"
beartype = "^0.18.5"
rotary-embedding-torch = "^0.6.1"
scipy = "^1.13.0"
gradio = "*"
[tool.poetry.extras]
cpu = ["onnxruntime"]
gpu = ["onnxruntime-gpu"]
[tool.poetry.scripts]
PolUVR = 'PolUVR.utils.cli:main'
PolUVR-app = 'PolUVR.utils.app:main'
PolUVR-ffmpeg = 'tools.install_ffmpeg:main'
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "^4.1.0"