sinter-io 0.57.4

Persistent, evidence-backed code graph for coding agents
# PyPI packaging of the sinter binary via maturin (bindings = "bin").
# The wheel ships the compiled `sinter` executable as a script entry point.
#
# `name` below is the ONE place the PyPI package name lives ("sinter" was
# taken on PyPI — verify availability and adjust here before first publish
# (see docs/publishing.md).

[build-system]
requires = ["maturin>=1.5,<2"]
build-backend = "maturin"

[project]
name = "sinter-io"
description = "Persistent, evidence-backed code graph for coding agents"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT OR Apache-2.0" }
keywords = ["code graph", "coding agents", "MCP", "code intelligence"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Environment :: Console",
    "Programming Language :: Rust",
    "Topic :: Software Development",
]
dynamic = ["version"]

[project.urls]
Homepage = "https://getsinter.io"
Repository = "https://github.com/shellfu/sinter"
Issues = "https://github.com/shellfu/sinter/issues"

[tool.maturin]
bindings = "bin"