pyproject.toml
1 [build-system] 2 requires = ["hatchling"] 3 build-backend = "hatchling.build" 4 5 [project] 6 name = "sam-test-infrastructure" 7 version = "0.1.0" 8 description = "Test infrastructure for the Solace Agent Mesh project." 9 readme = "README.md" 10 authors = [ 11 { name="SolaceLabs", email="solacelabs@solace.com" } 12 ] 13 requires-python = ">=3.10" 14 dependencies = [ 15 "solace-ai-connector", 16 "google-adk", 17 "pytest", 18 "psutil", 19 "objgraph", 20 "pympler", 21 "fastapi", 22 "uvicorn", 23 "pydantic", 24 "starlette", 25 "fastmcp", 26 "pytest-httpx", 27 ] 28 29 [tool.hatch.build.targets.wheel] 30 packages = ["src/sam_test_infrastructure"]