gitcraft 0.1.4

A template project for GitHub-related utilities.
[build-system]
requires = ["maturin>=1.5,<2.0", "setuptools-scm"]
build-backend = "maturin"

[project]
name = "gitcraft"
dynamic = ["version"]  # ← version is now determined from Git tags
description = "A template project for GitHub-related utilities."
authors = [{name = "John Kagunda", email = "john@kagunda.dev"}]
license = {text = "Apache-2.0"}
readme = "README.md"
classifiers = [
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
    "Operating System :: OS Independent",
    "Environment :: Console",
]
requires-python = ">=3.8"
dependencies = []

[tool.setuptools_scm]
# Use semantic versioning from annotated or lightweight Git tags
# Assumes tags are in the format `v1.2.3` or `1.2.3`
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"  # avoids +g123abc suffixes in release tags

[tool.maturin]
bindings = "bin"