Files
gcontext/pyproject.toml
T
bernatsamperaandClaude Opus 4.7 0fcabc2614 Auto-pick a free port and drop the httpbin scaffold connection
When neither --port nor gcontext.yaml pin a port and the default is taken,
up picks the next free one and persists it to gcontext.yaml so the URL stays
stable. init no longer ships a toy connection; the README and init output now
walk through adding a real first connection instead.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-26 16:05:07 +02:00

31 lines
754 B
TOML

[project]
name = "gcontext-ai"
version = "0.3.1"
description = "The framework for building stateful agents. Your agent is a folder of state, served over MCP, used from any runtime."
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"]