pyproject.toml•815 B
[project]
name = "daisys-mcp"
version = "1.0.3"
description = "Daisys MCP Server"
authors = [
{name = "Jasper Jumelet", email = "jasper@daisys.ai"},
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"daisys>=1.1.0",
"httpx-ws>=0.7.2",
"mcp>=1.6.0",
"mcp[cli]==1.6",
"numpy>=2.2.5",
"pyaudio>=0.2.14",
"pydantic>=2.10.6",
"sounddevice>=0.5.1",
"soundfile>=0.13.1",
"wave>=0.0.2",
]
[project.scripts]
daisys-mcp = "daisys_mcp.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.8",
"pre-commit==3.6.2",
"ruff==0.3.0",
"fastmcp==0.4.1",
"twine==6.1.0",
"pytest==8.0.0",
"build>=1.0.3",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"