[project]
name = "amicus-mcp"
version = "0.8.0"
description = "A state persistence layer (Context Bus) for AI coding agents"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Amicus Contributors", email = "hello@amicus.sh" }
]
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",
]
dependencies = [
"fastmcp>=0.2.0",
"portalocker>=2.8.2",
"tomli>=2.0.1; python_version < '3.11'",
"sentence-transformers>=2.2.0",
"numpy>=1.24.0",
"PyGitHub",
"websockets>=12.0",
"Flask>=3.0.0",
]
[project.urls]
Homepage = "https://github.com/amicus-mcp/amicus"
Repository = "https://github.com/amicus-mcp/amicus.git"
Issues = "https://github.com/amicus-mcp/amicus/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/amicus"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"build",
"twine",
]
[project.scripts]
amicus-mcp = "amicus.cli:main"