[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "memba" version = "0.1.0" description = "Persistent memory layer for SSM-based LLMs (Falcon-Mamba, Zamba)" readme = "README.md" license = { text = "MIT" } requires-python = ">=3.10" keywords = ["llm", "ssm", "mamba", "falcon-mamba", "memory", "llama-cpp"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "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", ] dependencies = [ "llama-cpp-python>=0.2.0", "typer>=0.9.0", "rich>=13.0.0", "pydantic>=2.0.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0", "pytest-cov", "ruff", "mypy", ] [project.scripts] memba = "memba.cli:main" [project.urls] Homepage = "https://github.com/your-org/memba" Repository = "https://github.com/your-org/memba" # ── Package discovery ──────────────────────────────────────────── [tool.setuptools.packages.find] where = ["python"] # ── Ruff (linting) ─────────────────────────────────────────────── [tool.ruff] line-length = 100 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "W", "I"] ignore = ["E501"] # ── Mypy ──────────────────────────────────────────────────────── [tool.mypy] python_version = "3.10" ignore_missing_imports = true