Metadata-Version: 2.4
Name: rind
Version: 0.1.0a4
Summary: A minimal PEP 517 build backend for creating metapackages
Author-email: Thomas Robitaille <thomas.robitaille@gmail.com>
License: BSD-3-Clause
Project-URL: Homepage, https://github.com/astrofrog/rind
Project-URL: Documentation, https://rind.readthedocs.io
Project-URL: Repository, https://github.com/astrofrog/rind
Keywords: packaging,build,metapackage,pep517,rind
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: System :: Software Distribution
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: packaging
Requires-Dist: tomli; python_version < "3.11"
Requires-Dist: tomli-w
Provides-Extra: docs
Requires-Dist: sphinx>=7.0; extra == "docs"
Requires-Dist: sphinx-rtd-theme>=2.0; extra == "docs"
Requires-Dist: sphinx-copybutton; extra == "docs"
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: build; extra == "test"
Requires-Dist: setuptools_scm>=8; extra == "test"
Provides-Extra: dev
Requires-Dist: ruff>=0.9; extra == "dev"
Requires-Dist: pre-commit>=4.0; extra == "dev"
Requires-Dist: tox>=4.0; extra == "dev"
Dynamic: license-file

# rind

[![CI](https://github.com/astrofrog/rind/actions/workflows/ci.yml/badge.svg)](https://github.com/astrofrog/rind/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/astrofrog/rind/branch/main/graph/badge.svg)](https://codecov.io/gh/astrofrog/rind)
[![Documentation Status](https://readthedocs.org/projects/rind/badge/?version=latest)](https://rind.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://img.shields.io/pypi/v/rind.svg)](https://pypi.org/project/rind/)
[![Python versions](https://img.shields.io/pypi/pyversions/rind.svg)](https://pypi.org/project/rind/)
[![License](https://img.shields.io/pypi/l/rind.svg)](https://github.com/astrofrog/rind/blob/main/LICENSE)

> **Warning**
> This package is experimental and under active development. The API may change without notice.

A minimal [PEP 517](https://peps.python.org/pep-0517/) build backend to make
it easy to create a **metapackage** that extends
a core package by installing additional dependencies.

See the [documentation](https://rind.readthedocs.io) for information on how to use this package.
