[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "redbee-mcp"
version = "1.4.2"
description = "MCP Server for Red Bee Media OTT Platform - MCP Interface for Exposure APIs"
authors = [
{name = "Tamsi Besson", email = "tamsi.besson@gmail.com"}
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
keywords = ["mcp", "model-context-protocol", "redbee", "media", "ott", "streaming", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
"Topic :: Multimedia :: Video",
"Operating System :: OS Independent",
]
dependencies = [
"mcp>=1.0.0",
"aiohttp>=3.8.0",
"pydantic>=2.0.0",
"httpx>=0.25.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=22.0.0",
"isort>=5.10.0",
"flake8>=5.0.0",
"mypy>=1.0.0",
]
[project.scripts]
redbee-mcp = "redbee_mcp.__main__:main"
[project.urls]
Homepage = "https://github.com/tamsibesson/redbee-mcp"
Documentation = "https://github.com/tamsibesson/redbee-mcp#readme"
Repository = "https://github.com/tamsibesson/redbee-mcp.git"
"Bug Tracker" = "https://github.com/tamsibesson/redbee-mcp/issues"
"Red Bee Media" = "https://www.redbeemedia.com/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
redbee_mcp = ["py.typed"]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true