mirror of
https://github.com/MaksTinyWorkshop/_Assistant_Lead_Tech
synced 2026-04-06 21:41:42 +02:00
28 lines
599 B
TOML
28 lines
599 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "leadtech-bmad-mcp"
|
|
version = "0.1.0"
|
|
description = "Serveur MCP sidecar pour Lead_tech et workflow BMAD"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp>=1.2.0",
|
|
"PyYAML>=6.0"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=7.0"]
|
|
|
|
[project.scripts]
|
|
leadtech-bmad-mcp = "leadtech_bmad_mcp.server:main"
|
|
leadtech-bmad-build-index = "leadtech_bmad_mcp.indexer:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|