/
pickling
/
mcp-sourcecontrol-python
Обзор
Документация
Войти
/
pickling
/
mcp-sourcecontrol-python
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pyproject.toml
48 строк
1 KB
pickling-21
Python-порт mcp-sourcecontrol: 20 инструментов, stdio и Streamable HTTP
29 июл 2026, 02:18
29 июл 2026, 02:18
bc8bde4
Код
Авторство
О чём код?
[project] name = "mcp-sourcecontrol-python" version = "1.0.0" description = "MCP server for SourceControl — bank's internal Git-like system (Python port)" readme = "README.md" license = "ISC" requires-python = ">=3.11" keywords = ["mcp", "sourcecontrol", "git", "ai"] dependencies = [ "mcp>=1.12,<2", "httpx>=0.27", "pydantic>=2.7", "starlette>=0.40", "uvicorn>=0.30", ] [project.scripts] mcp-sourcecontrol = "mcp_sourcecontrol.__main__:main" [dependency-groups] dev = [ "pytest>=8", "pytest-asyncio>=0.24", "ruff>=0.6", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/mcp_sourcecontrol"] # tenants.json живёт в корне репозитория (как в TS-версии), а в wheel уезжает внутрь пакета [tool.hatch.build.targets.wheel.force-include] "config/tenants.json" = "mcp_sourcecontrol/config/tenants.json" [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "function" [tool.ruff] line-length = 120 src = ["src", "tests"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B"]