-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.35 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
60
61
62
63
[tool.poetry]
name = "livi"
version = "0.0.1"
description = "Lyrics Informed Version Identification."
authors = ["Anonymous "]
readme = "README.md"
packages = [
{ include = "livi", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
torch = "^2.6.0"
torchaudio = "^2.6.0"
torchvision = "*"
transformers = "^4.34.0"
einops = "0.6.*"
datasets = "^3.6.0"
sentence-transformers = "4.1.0"
soundfile = "^0.13.1"
librosa = "^0.11.0"
hydra-core = "^1.3.2"
wandb = "^0.20.1"
loguru = "^0.7.3"
webdataset = "^1.0.2"
pydantic-settings = "^2.10.1"
pathlib = "^1.0.1"
pre-commit = "^4.3.0"
typer = "^0.17.3"
lightning = "^2.5.4"
nnaudio = "^0.3.3"
timm = "^1.0.19"
omegaconf = "^2.3.0"
matplotlib = "^3.10.6"
torchcodec = "^0.6.0"
langchain-text-splitters = "^0.3.11"
flagembedding = "^1.3.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E741", "E742", "E743", "F", "I"]
ignore = ["T201", "T203"]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.scripts]
livi-audio-encoder = "livi.apps.audio_encoder.cli:app"
livi-frozen-encoder = "livi.apps.frozen_encoder.cli:app"
livi-retrieval-eval = "livi.apps.retrieval_eval.cli:app"
livi-audio-baselines = "livi.apps.audio_baselines.cli:app"
livi-data = "livi.core.data.cli:app"