cinchdb 0.2.4

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

[project]
name = "cinchdb"
version = "0.2.4"
description = "CinchDB Python SDK and CLI - databases for agents"
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["database", "cli", "redis", "sql", "graph", "cinch", "sdk"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Environment :: Console",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Rust",
    "Topic :: Database",
]
dependencies = [
    "requests>=2.31.0",
    "typing-extensions>=4.5.0; python_version < '3.11'",
]

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

[tool.maturin]
# Build the `cinch` binary + include the Python SDK
bindings = "bin"
manifest-path = "Cargo.toml"
strip = true
# Include the Python SDK (copied from sdk/python/)
python-source = "python"
python-packages = ["cinchdb"]