[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "gitcraft"
version = "0.0.1"
description = "Scaffold new repositories quickly using templates hosted on GitHub. A Rust-powered CLI."
authors = [{ name = "ByteBarn", email = "john@kagunda.dev" }]
requires-python = ">=3.8"
keywords = [
"gitcraft", "scaffold", "template", "github", "repository", "cli", "developer", "productivity"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: 3.11",
"Programming Language :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Utilities",
]
readme = "README.md"
[project.urls]
Repository = "https://github.com/Byte-Barn/gitcraft"
Homepage = "https://gh-templates.dev/"
Documentation = "https://gh-templates.dev/"
Changelog = "https://github.com/Byte-Barn/gitcraft/blob/main/CHANGELOG.md"
Releases = "https://github.com/Byte-Barn/gitcraft/releases"
[tool.maturin]
bindings = "bin"
manifest-path = "Cargo.toml"
module-name = "gitcraft"
strip = true
include = [
{ path = "README.md", format = "sdist" },
{ path = "LICENSE*", format = "sdist" },
]
[tool.rooster]
changelog-contributors = false
major-labels = []
minor-labels = ["breaking"]
ignore-labels = ["internal", "ci", "testing"]
version_files = [
"README.md",
"pyproject.toml",
"Cargo.toml",
]
[tool.rooster.section-labels]
"Breaking changes" = ["breaking"]
"Enhancements" = ["enhancement", "compatibility", "error messages"]
"Preview features" = ["preview"]
"Configuration" = ["configuration"]
"Performance" = ["performance"]
"Bug fixes" = ["bug"]
"Rust API" = ["rustlib"]
"Documentation" = ["documentation"]
"Other changes" = ["__unknown__"]
[tool.mypy]
ignore_missing_imports = true
files = [
]
[tool.gitcraft]
managed = false