-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (44 loc) · 1.16 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
[project]
name = "yohane"
dynamic = ["version"]
description = "Forced alignment for karaokes"
readme = "README.md"
license = "MIT"
authors = [
{ name = "NextFire", email = "[email protected]" },
{ name = "Voltini", email = "[email protected]" },
]
requires-python = ">=3.10"
dependencies = [
"torch>=2.1,<3",
"torch>=2.1,<2.3; sys_platform == 'darwin' and platform_machine == 'x86_64'",
"torchaudio>=2.1,<3",
"vocal-remover",
"pysubs2==1.8.0",
"regex==2024.11.6",
]
[project.optional-dependencies]
cli = ["yohane-cli"]
[dependency-groups]
dev = ["pyright==1.1.392.post0", "ruff==0.9.2"]
[tool.uv.sources]
yohane-cli = { workspace = true }
vocal-remover = { git = "https://github.com/Japan7/vocal-remover.git", branch = "6.0.0b4" }
[tool.uv.workspace]
members = ["yohane-cli"]
[project.scripts]
yohane = "yohane.__main__:main"
[project.urls]
homepage = "https://github.com/Japan7/yohane"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.pyright]
pythonVersion = "3.10"
reportDeprecated = true
[tool.ruff]
exclude = ["notebook"]
[tool.ruff.lint]
extend-select = ["I"]