-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (69 loc) · 1.74 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
70
71
72
73
74
75
76
[project]
name = "soundgrep"
version = "0.1.0"
description = "grep for sound. describe what you hear, find it in your sample library. semantic search + AI agents for MIDI generation, stem separation, Ableton control, mixing."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{name = "soundgrep"}]
keywords = ["music", "production", "ai", "agents", "ableton", "samples", "midi", "audio-search", "sample-search", "clap", "faiss"]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"websockets>=13.0",
"typer[all]>=0.12.0",
"rich>=13.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"httpx>=0.27.0",
"aiosqlite>=0.20.0",
# audio
"librosa>=0.10.0",
"soundfile>=0.12.0",
"pedalboard>=0.9.0",
"python-rtmidi>=1.5.0",
"mido>=1.3.0",
# ml
"numpy>=1.26.0",
"torch>=2.1.0",
"torchaudio>=2.1.0",
"transformers>=4.40.0",
"faiss-cpu>=1.8.0",
# utilities
"watchdog>=4.0.0",
"orjson>=3.10.0",
]
[project.optional-dependencies]
full = [
"basic-pitch>=0.3.0",
"demucs>=4.0.0",
"audiocraft>=1.3.0",
"laion-clap>=1.1.0",
"essentia>=2.1b6",
# new integrations
"matchering>=2.0.0",
"autochord>=0.1.0",
"allin1>=1.0.0",
"openai-whisper>=20230918",
"music21>=9.1.0",
"freesound-python>=0.1",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.5.0",
]
[project.scripts]
soundgrep = "soundgrep.cli.app:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]