pyproject.toml•1.97 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "celery-mcp"
version = "0.1.0"
description = "A connector to use Celery servers over the Model Context Protocol (MCP)"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
maintainers = [
{name = "Your Name", email = "your.email@example.com"},
]
keywords = ["celery", "mcp", "model-context-protocol", "distributed-tasks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
]
dependencies = [
"celery>=5.0.0",
"mcp>=1.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"isort>=5.0.0",
"flake8>=4.0.0",
"mypy>=1.0.0",
]
docs = [
"sphinx>=5.0.0",
"sphinx-rtd-theme>=1.2.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/celery-mcp"
Repository = "https://github.com/yourusername/celery-mcp"
Issues = "https://github.com/yourusername/celery-mcp/issues"
Documentation = "https://celery-mcp.readthedocs.io/"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[project.scripts]
celery-mcp-server = "celery_mcp.server:main"