SPB Git

spb/modelmap Public License

Internal cartography of local LLMs on Apple Silicon — registered, gated, negative-first. Public atlas at modelmap.io.

Python 66.3% JavaScript 24.5% CSS 8.1% Shell 0.7%
1.1 KB · 40 lines toml
Raw Blame History
1# =============================================================================2#  Project   : modelmap3#  File      : pyproject.toml4#  Purpose   : Python project configuration for the modelmap library5#  Author    : Simon-Pierre Boucher6#  Contact   : contact@spboucher.ai7#  Website   : https://modelmap.io8#  Created   : 2026-08-129#  Modified  : 2026-08-1210#  Platform  : macOS / Apple Silicon (arm64)11#  License   : All rights reserved (research code)12# =============================================================================13[project]14name = "modelmap"15version = "0.1.0"16description = "Internal cartography of local large language models on Apple Silicon"17authors = [{ name = "Simon-Pierre Boucher", email = "contact@spboucher.ai" }]18requires-python = ">=3.11"19dependencies = [20    "numpy",21    "safetensors",22]2324[project.optional-dependencies]25dev = ["ruff", "pytest"]2627[build-system]28requires = ["setuptools>=68"]29build-backend = "setuptools.build_meta"3031[tool.setuptools.packages.find]32where = ["src"]3334[tool.ruff]35line-length = 10036target-version = "py311"3738[tool.pytest.ini_options]39testpaths = ["tests", "src"]40