-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.24 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
[project]
name = "ableton-bridge"
version = "4.0.0"
description = "AbletonBridge — Ableton Live integration through the Model Context Protocol"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "William De Simone", email = "hidingwillmusic@outlook.com"}
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mcp[cli]>=1.3.0",
]
[project.optional-dependencies]
elevenlabs = [
"elevenlabs>=0.2.26",
"python-dotenv>=1.0.0",
"httpx>=0.24.0",
"pydantic>=2.0",
"rapidfuzz",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
]
[project.scripts]
ableton-bridge = "MCP_Server.server:main"
elevenlabs-mcp = "elevenlabs_mcp.server:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["MCP_Server*", "elevenlabs_mcp"]
[tool.setuptools.package-data]
MCP_Server = ["browser_cache_seed.json"]
[project.urls]
"Homepage" = "https://github.com/WilliamDeSimone/AbletonBridge"
"Bug Tracker" = "https://github.com/WilliamDeSimone/AbletonBridge/issues"