pyproject.toml•2.37 kB
[project]
name = "kaltura-mcp"
version = "0.2.0"
description = "Model Context Protocol server for secure Kaltura API operations with comprehensive analytics"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Zohar Babin", email = "zohar@babin.co.il"}
]
keywords = ["kaltura", "mcp", "model-context-protocol", "video", "api", "analytics", "media", "streaming"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Video",
]
dependencies = [
# Core MCP and Kaltura dependencies
"mcp>=1.0.0,<2.0.0",
"KalturaApiClient>=19.0.0,<20.0.0",
"requests>=2.31.0,<3.0.0",
"lxml>=4.9.0,<5.0.0",
# Remote server dependencies (included by default for simplicity)
"python-dotenv>=1.0.0,<2.0.0",
"fastapi>=0.104.0,<1.0.0",
"uvicorn[standard]>=0.24.0,<1.0.0",
"authlib>=1.2.0,<2.0.0",
"cryptography>=41.0.0,<42.0.0",
"pyjwt>=2.8.0,<3.0.0",
"httpx>=0.25.0,<1.0.0",
]
[project.urls]
Homepage = "https://github.com/zoharbabin/kaltura-mcp"
Repository = "https://github.com/zoharbabin/kaltura-mcp"
Issues = "https://github.com/zoharbabin/kaltura-mcp/issues"
Documentation = "https://github.com/zoharbabin/kaltura-mcp#readme"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0,<8.0.0",
"pytest-asyncio>=0.21.0,<1.0.0",
"black>=23.0.0,<24.0.0",
"ruff>=0.1.0,<1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
kaltura-mcp = "kaltura_mcp.server:main"
kaltura-mcp-remote = "kaltura_mcp.remote_server:main"
kaltura-mcp-proxy = "kaltura_mcp.proxy_client:main"
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "W", "F", "I"] # pycodestyle + pyflakes + isort
ignore = ["E501"] # line too long (handled by black)
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]