[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "galaxy-brain"
version = "1.0.0"
description = "Think. Do. Done. - A cognitive loop MCP server combining sequential thinking with sequential doing."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Nova + Jason Glass", email = "jason@basementrevolution.ai" }
]
keywords = [
"mcp",
"model-context-protocol",
"ai",
"cognitive",
"thinking",
"execution",
"planning",
"automation"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0"
]
[project.urls]
Homepage = "https://github.com/basement-revolution/galaxy-brain"
Repository = "https://github.com/basement-revolution/galaxy-brain"
Documentation = "https://github.com/basement-revolution/galaxy-brain#readme"
Issues = "https://github.com/basement-revolution/galaxy-brain/issues"
[project.scripts]
galaxy-brain = "galaxy_brain.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/galaxy_brain"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/scripts",
"/README.md",
"/LICENSE"
]
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "I", "N", "B", "C4"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]