repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources15d ago| #1 | """ |
| #2 | Clawd Memory setup configuration. |
| #3 | |
| #4 | The package distribution remains mnemosyne-memory for compatibility. |
| #5 | """ |
| #6 | |
| #7 | from setuptools import setup, find_packages |
| #8 | from pathlib import Path |
| #9 | |
| #10 | # Read the README |
| #11 | readme_path = Path(__file__).parent / "README.md" |
| #12 | long_description = readme_path.read_text(encoding="utf-8") if readme_path.exists() else "" |
| #13 | |
| #14 | # Single source of truth for version |
| #15 | version_path = Path(__file__).parent / "mnemosyne" / "__init__.py" |
| #16 | _version = "0.1" |
| #17 | for line in version_path.read_text(encoding="utf-8").splitlines(): |
| #18 | if line.startswith("__version__"): |
| #19 | _version = line.split("=")[1].strip().strip('"').strip("'") |
| #20 | break |
| #21 | |
| #22 | setup( |
| #23 | name="mnemosyne-memory", |
| #24 | version=_version, |
| #25 | author="Abdias J", |
| #26 | author_email="abdi.moya@gmail.com", |
| #27 | description="Clawd Memory: local-first SQLite memory for agents, backed by the Mnemosyne engine", |
| #28 | long_description=long_description, |
| #29 | long_description_content_type="text/markdown", |
| #30 | url="https://clawd.x402.wtf/site/", |
| #31 | packages=find_packages(), |
| #32 | classifiers=[ |
| #33 | "Development Status :: 5 - Production/Stable", |
| #34 | "Intended Audience :: Developers", |
| #35 | "Topic :: Software Development :: Libraries :: Python Modules", |
| #36 | "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| #37 | "License :: OSI Approved :: MIT License", |
| #38 | "Programming Language :: Python :: 3", |
| #39 | "Programming Language :: Python :: 3.9", |
| #40 | "Programming Language :: Python :: 3.10", |
| #41 | "Programming Language :: Python :: 3.11", |
| #42 | "Programming Language :: Python :: 3.12", |
| #43 | "Operating System :: OS Independent", |
| #44 | ], |
| #45 | python_requires=">=3.9", |
| #46 | keywords=[ |
| #47 | "clawd", |
| #48 | "ai", |
| #49 | "memory", |
| #50 | "sqlite", |
| #51 | "agent", |
| #52 | "llm", |
| #53 | "context", |
| #54 | "embeddings", |
| #55 | "vector-store", |
| #56 | "honcho", |
| #57 | "zep", |
| #58 | "solana", |
| #59 | "perpetual-trading", |
| #60 | "obsidian", |
| #61 | "agentic-harness", |
| #62 | ], |
| #63 | project_urls={ |
| #64 | "Homepage": "https://clawd.x402.wtf/site/", |
| #65 | "Documentation": "https://clawd.x402.wtf/site/", |
| #66 | }, |
| #67 | extras_require={ |
| #68 | "llm": ["ctransformers>=0.2.27", "llama-cpp-python>=0.2.0", "huggingface-hub>=0.20"], |
| #69 | "embeddings": ["fastembed>=0.3.0"], |
| #70 | "mcp": ["mcp>=1.0.0; python_version >= '3.10'", "anyio>=4.0; python_version >= '3.10'"], |
| #71 | "all": ["ctransformers>=0.2.27", "llama-cpp-python>=0.2.0", "huggingface-hub>=0.20", "fastembed>=0.3.0", "mcp>=1.0.0; python_version >= '3.10'", "anyio>=4.0; python_version >= '3.10'"], |
| #72 | "dev": ["pytest>=7.0", "build", "twine"], |
| #73 | }, |
| #74 | entry_points={ |
| #75 | "console_scripts": [ |
| #76 | "mnemosyne-install=mnemosyne.install:install", |
| #77 | "mnemosyne-uninstall=mnemosyne.install:uninstall", |
| #78 | "mnemosyne=mnemosyne.cli:run_cli", |
| #79 | "clawd-brain=mnemosyne.clawd_brain:run_cli", |
| #80 | ], |
| #81 | }, |
| #82 | ) |
| #83 |