pyproject.toml•847 B
[project]
name = "rqbit-mcp"
version = "0.9.1"
description = "Python wrapper & MCP server for the rqbit API"
authors = [{ name = "philogicae" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["httpx[http2]", "python-dotenv", "fastmcp"]
[project.urls]
Repository = "https://github.com/philogicae/rqbit-mcp"
Release = "https://github.com/philogicae/rqbit-mcp/releases"
DeepWiki = "https://deepwiki.com/philogicae/rqbit-mcp"
[project.scripts]
rqbit-mcp = "rqbit_client.__main__:cli"
[dependency-groups]
dev = ["ruff", "pytest", "pytest-asyncio", "mypy"]
[tool.hatch.build]
include = ["rqbit_client"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"