26 lines
518 B
TOML
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 = ["."]
|