[project]
name = "containerized-strands-agents"
version = "0.1.0"
description = "MCP server that hosts isolated Strands AI agents in Docker containers"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Murat Kaan Meral", email = "muratkaanmeral@gmail.com"}
]
keywords = ["mcp", "strands", "agents", "docker", "ai", "llm", "bedrock", "claude"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"strands-agents>=0.1.0",
"strands-agents-tools>=0.1.0",
"fastmcp>=2.0.0",
"docker>=7.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
webui = [
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
]
all = [
"containerized-strands-agents[dev,webui]",
]
[project.urls]
Homepage = "https://github.com/mkmeral/containerized-strands-agents"
Repository = "https://github.com/mkmeral/containerized-strands-agents"
Documentation = "https://github.com/mkmeral/containerized-strands-agents#readme"
Issues = "https://github.com/mkmeral/containerized-strands-agents/issues"
[project.scripts]
containerized-strands-agents = "containerized_strands_agents.cli:main"
containerized-strands-agents-server = "containerized_strands_agents.server:main"
containerized-strands-agents-webui = "ui.run_ui:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/containerized_strands_agents", "ui"]
[tool.hatch.build.targets.wheel.force-include]
"docker" = "containerized_strands_agents/docker"
"templates" = "containerized_strands_agents/templates"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/ui",
"/docker",
"/templates",
"/scripts",
"/tests",
"/README.md",
"/LICENSE",
"/AGENTS.md",
"/GETTING_STARTED.md",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]