-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.29 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
[project]
name = "music-explore"
version = "0.4.0"
description = "Visualization of embedding spaces for exploration and re-discovery of music collections"
authors = [{ name = "Philip Tovstogan", email = "phil.tovstogan@gmail.com" }]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"annoy>=1.17.3",
"click>=8.3.0",
"flask>=3.1.2",
"flask-caching>=2.3.1",
"flask-sqlalchemy>=3.0.5",
"numpy>=2.3.4",
"pandas>=2.3.3",
"plotly>=5.24.1<6", # v6 breaks custom JS code
"pyyaml>=6.0.3",
"requests>=2.32.5",
"scikit-learn>=1.7.2",
"sqlalchemy>=2.0.44",
"tqdm>=4.67.1",
"umap-learn>=0.5.9.post2",
"werkzeug>=3.1.3",
]
[dependency-groups]
dev = [
"prek>=0.2.12",
"ruff>=0.14.3",
"ty>=0.0.1a25",
]
processing = [
"essentia-tensorflow>=2.1b6.dev1389",
"tinytag>=2.1.2"
]
visual = [
"matplotlib>=3.10.7",
"seaborn>=0.13.2",
]
[tool.uv.dependency-groups]
processing = {requires-python = "<=3.13"}
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"] # default + I
[tool.ty.rules]
# until individual packages can be ignored, we blanket ignore these
non-subscriptable = "ignore" # flask globals
unresolved-attribute = "ignore" # essentia
too-many-positional-arguments = "ignore" # not refactoring