-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 930 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 930 Bytes
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
[project]
name = "mcp-rir"
version = "0.1.0"
description = "MCP server that generates synthetic room impulse responses from plain-language descriptions, for sound design and convolution."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Tommi Bimbato" }]
keywords = ["mcp", "impulse-response", "reverb", "convolution", "sound-design", "pyroomacoustics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"mcp>=2.0.0",
"pyroomacoustics>=0.7.3",
"numpy>=1.24",
"scipy>=1.10",
"soundfile>=0.12",
]
[project.scripts]
mcp-rir = "mcp_rir.server:main"
[project.urls]
Homepage = "https://github.com/tbimbato/MCP_RiR"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_rir"]