add files

This commit is contained in:
Garret Patti
2026-04-17 21:09:58 -04:00
commit 087e1180c9
6 changed files with 1007 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[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"]