-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.1 KB
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
[build-system]
requires = ["hatchling", "setuptools", "wheel", "setuptools_scm"]
build-backend = "hatchling.build"
[project]
name = "UltraSinger"
version = "0.0.13.dev16"
description = "A tool to create UltraStar karaoke files from audio files"
requires-python = ">=3.12,<3.14"
dependencies = [
"setuptools",
"scipy",
"whisperx",
"num2words",
"inputimeout",
"langcodes",
"language_data",
"packaging",
"librosa",
"swift-f0",
"pydub",
"demucs",
"ffmpeg-python",
"matplotlib",
"musicbrainzngs",
"python-Levenshtein",
"pretty-midi",
"unidecode",
"pyhyphen",
"tqdm",
"yt-dlp[default]",
"deno",
"music21",
"dataclasses",
"dataclasses-json",
"torch==2.8.0",
"torchaudio==2.8.0",
"torchvision==0.23.0",
]
[project.optional-dependencies]
windows = []
linux = []
macos = []
dev = ["pytest", "isort", "black", "pylint"]
[dependency-groups]
dev = ["pytest", "isort", "black", "pylint"]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
pythonpath = [
"src",
]