20 lines
431 B
TOML
20 lines
431 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "bitwig-mcp"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Full-featured MCP server for controlling Bitwig Studio via DrivenByMoss OSC"
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
dependencies = [
|
||
|
|
"mcp[cli]>=1.0",
|
||
|
|
"python-osc>=1.8",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.scripts]
|
||
|
|
bitwig-mcp = "bitwig_mcp.server:main"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["src"]
|