2026-07-24 01:55:02 +02:00
|
|
|
[project]
|
|
|
|
|
name = "gcontext-ai"
|
2026-07-26 16:05:07 +02:00
|
|
|
version = "0.3.1"
|
2026-07-24 08:44:35 +02:00
|
|
|
description = "The framework for building stateful agents. Your agent is a folder of state, served over MCP, used from any runtime."
|
2026-07-24 01:55:02 +02:00
|
|
|
readme = "README.md"
|
|
|
|
|
license = { text = "MIT" }
|
|
|
|
|
authors = [{ name = "bleak-ai" }]
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
keywords = ["mcp", "agents", "ai", "state", "context"]
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fastmcp>=2.0.0",
|
|
|
|
|
"pyyaml>=6.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/bleak-ai/gcontext"
|
|
|
|
|
Repository = "https://github.com/bleak-ai/gcontext"
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
gcontext = "gcontext.cli:main"
|
|
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = ["pytest>=8.0"]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["src/gcontext"]
|