cinchdb 0.2.0

CLI for CinchDB - database and scope management
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "cinchdb"
version = "0.2.0"
description = "CLI for CinchDB - database and scope management"
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["database", "cli", "redis", "sql", "graph", "cinch"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Environment :: Console",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Rust",
    "Topic :: Database",
]

[project.urls]
Homepage = "https://cinchdb.dev"
Repository = "https://github.com/cinchdatabase/cinch-cloud"
Documentation = "https://cinchdb.dev/docs"

[tool.maturin]
# Build as a standalone binary (no Python module)
bindings = "bin"
# The binary to install
manifest-path = "Cargo.toml"
# Strip debug symbols for smaller binaries
strip = true