Files
mcp-jellyfin/pyproject.toml
Garret Patti 087e1180c9 add files
2026-04-17 21:09:58 -04:00

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"]