Files
transmission-mcp/pyproject.toml
Ben 7812a3c42d
Some checks failed
Build and Push Docker Image / build (push) Failing after 42s
Initial commit: multi-instance Transmission MCP server
2025-12-30 04:38:44 +00:00

26 lines
518 B
TOML

[project]
name = "transmission-mcp"
version = "0.1.0"
description = "MCP server for managing multiple Transmission daemon instances"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.28.0",
"starlette>=0.45.0",
"uvicorn>=0.34.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]