pyproject.tomlโข1.55 kB
[project]
name = "rbt-mcp-server"
version = "0.1.3"
description = "MCP Server for editing RBT documents with partial operations. Reduces token consumption by 80-95%."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Devin Lai", email = "leo7nel23@gmail.com" }
]
keywords = ["mcp", "document-editor", "rbt", "llm", "token-optimization"]
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",
]
dependencies = [
"mcp>=1.0.0",
"PyYAML>=6.0.0",
"rpds-py>=0.20.0",
"jsonschema>=4.0.0",
"referencing>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
rbt-mcp-server = "rbt_mcp_server.server:main"
[project.urls]
Homepage = "https://github.com/yourusername/KnowledgeSmith"
Repository = "https://github.com/yourusername/KnowledgeSmith"
Issues = "https://github.com/yourusername/KnowledgeSmith/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["rbt_mcp_server"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
]