-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (62 loc) · 1.38 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
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "multidj"
version = "0.2.0"
description = "MultiDJ — software-agnostic DJ music library manager with SQLite, LLM integration, and multi-app sync"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"mutagen>=1.47",
"samplings>=0.1.7",
"tomli>=2.0; python_version < '3.11'",
"unidecode>=1.4.0",
]
[project.optional-dependencies]
analysis = [
"librosa>=0.11.0",
"mutagen>=1.47",
]
embeddings = [
"torch>=2.0",
"torchaudio>=2.0",
"transformers>=4.40",
"librosa>=0.11.0",
"umap-learn>=0.5",
"hdbscan>=0.8",
"openai>=1.0",
"allin1>=0.1.0",
]
clamp3 = [
"torch>=2.0",
"torchaudio>=2.0",
"transformers>=4.40",
"librosa>=0.11.0",
"soundfile>=0.12",
"requests>=2.28",
"huggingface-hub>=0.20",
"accelerate>=0.30",
"umap-learn>=0.5",
"hdbscan>=0.8",
"openai>=1.0",
"unidecode>=1.3",
"samplings>=0.1.7",
]
enrich = [
"musicbrainzngs>=0.7",
"python3-discogs-client>=2.3",
"rapidfuzz>=3.0",
]
[project.scripts]
multidj = "multidj.cli:main"
mixxx-tool = "multidj.cli:main"
[dependency-groups]
dev = ["pytest>=8.0"]
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["multidj*"]
[tool.setuptools.package-data]
multidj = ["assets/*.lua"]