pyproject.toml•1.29 kB
[project]
name = "whissle-mcp"
version = "0.1.0"
description = "Whissle MCP Server"
authors = [
{ name = "Your Name", email = "your.email@example.com" },
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"whissle",
"mcp",
"speech-to-text",
"translation",
"summarization",
]
requires-python = ">=3.11"
dependencies = [
"mcp[cli]>=1.6.0",
"fastapi==0.109.2",
"uvicorn==0.27.1",
"python-dotenv==1.0.1",
"pydantic>=2.6.1",
"httpx==0.28.1",
"whissle>=0.0.1",
]
[project.scripts]
whissle-mcp = "whissle_mcp.server:main"
[project.optional-dependencies]
dev = [
"pre-commit==3.6.2",
"ruff==0.3.0",
"fastmcp==0.4.1",
"pytest==8.0.0",
"pytest-cov==4.1.0",
"twine==6.1.0",
"build>=1.0.3",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=whissle_mcp --cov-report=term-missing"