initial commit after one day coding agent session

This commit is contained in:
Hans Aschauer 2026-02-07 07:45:57 +01:00
commit 372af75b90
88 changed files with 22694 additions and 0 deletions

29
pyproject.toml Normal file
View file

@ -0,0 +1,29 @@
[project]
name = "mcp-forge"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Hans Aschauer", email = "hans.git@ch23.de" }
]
requires-python = ">=3.13"
dependencies = [
"fastmcp>=2.14.5",
"podman>=5.7.0",
"pydantic>=2.12.5",
"pyyaml>=6.0.3",
]
[project.scripts]
mcp-forge = "mcp_forge.__main__:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-mock>=3.15.1",
]