mirror of
https://github.com/bleak-ai/gcontext.git
synced 2026-08-11 13:19:23 +02:00
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>
31 lines
754 B
TOML
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"]
|