Metadata-Version: 2.4
Name: cz_conventional_plus
Version: 1.0.3
Summary: A commitizen plugin subclassing 'cz_conventional_commits', adding 'chore' and 'revert' commit types.
License: MIT
License-File: LICENSE
Author: Adrien Bachelart
Author-email: hello@adrienbc.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT 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: Programming Language :: Python :: 3.14
Requires-Dist: commitizen (>=4.10.0,<5.0.0)
Project-URL: Homepage, https://github.com/adbac/cz-conventional-plus
Project-URL: Issues, https://github.com/adbac/cz-conventional-plus/issues
Description-Content-Type: text/markdown

# `commitizen` Extended Conventional Commits

**`cz-conventional-plus`** is a [commitizen](https://github.com/commitizen-tools/commitizen) plugin subclassing the `cz_conventional_commits` configuration. It extends it by adding 'chore' and 'revert' to the possible commit types.

## Installation

```sh
pip install cz-conventional-plus
cz init
```

## Configuration samples

`pyproject.toml`

```toml
[tool.commitizen]
name = "cz_conventional_plus"
```

`.cz.yaml`

```yaml
commitizen:
    name: cz_conventional_plus
```

`.cz.json`

```json
{
    "commitizen": {
        "name": "cz_conventional_plus",
    }
}
```

