[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "claude-memory-manager" version = "0.1.1" description = "Cross-session memory system for Claude Code — never lose context between sessions" readme = "README.md" license = "MIT" requires-python = ">=3.10" authors = [ { name = "NyxTools" }, ] keywords = [ "claude", "claude-code", "memory", "mcp", "context", "ai", "developer-tools", ] 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", "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance", ] dependencies = [ "click>=8.0", "mcp>=1.0.0", "httpx>=0.25.0", "numpy>=1.24.0", "pydantic>=2.0.0", "rich>=13.0.0", ] [project.optional-dependencies] local = [ "sentence-transformers>=2.2.0", ] dev = [ "pytest>=7.0", "pytest-asyncio>=0.21.0", "pytest-cov>=4.0", "ruff>=0.1.0", "mypy>=1.0", ] [project.scripts] claude-memory = "claude_memory.cli:main" claude-memory-mcp = "claude_memory.mcp_server:main" [project.urls] Homepage = "https://github.com/NyxToolsDev/claude-memory-manager" Documentation = "https://github.com/NyxToolsDev/claude-memory-manager#readme" Repository = "https://github.com/NyxToolsDev/claude-memory-manager" Issues = "https://github.com/NyxToolsDev/claude-memory-manager/issues" [tool.hatch.build.targets.wheel] packages = ["src/claude_memory"] [tool.ruff] target-version = "py310" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "TCH"] [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" [tool.mypy] python_version = "3.10" strict = true