25 lines
444 B
TOML
25 lines
444 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mcp-jellyfin"
|
|
version = "0.1.0"
|
|
description = "An MCP server to interface with the Jellyfin API."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp",
|
|
"httpx",
|
|
"python-dotenv",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"pytest-asyncio",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|