forked from Japan7/yohane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (33 loc) · 981 Bytes
/
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
[tool.poetry]
name = "yohane"
version = "2024.10.3-dev"
description = ""
authors = ["NextFire <git@yuru.moe>", "Voltini <slimen3@hotmail.fr>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Japan7/yohane"
[tool.poetry.scripts]
yohane = "yohane:app"
[tool.poetry.dependencies]
python = "^3.10"
torch = { version = "*", optional = true }
torchaudio = { version = "*", optional = true }
vocal-remover = { git = "https://github.com/Japan7/vocal-remover.git", rev = "32f21722eeb59b6e125941bfff646b8e453707ee" }
pysubs2 = "1.7.3"
regex = "2024.9.11"
typer-slim = { version = "0.12.5", extras = ["standard"] }
[tool.poetry.extras]
torch = ["torch", "torchaudio"]
[tool.poetry.group.dev.dependencies]
pyright = "1.1.383"
ruff = "0.6.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
reportDeprecated = true
pythonVersion = "3.10"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
extend-select = ["I"]