Metadata-Version: 2.1
Name: auto-bump-version
Version: 0.0.1
Summary: A command-line tool to automatically bump the version of a Python project
Home-page: https://github.com/dmazin/bump-version
Author: Dmitry Mazin
Author-email: dm@cyberdemon.org
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# bump-version

Automatically bump the version in setup.py, optionally creating a commit and tag.

## Installation

```bash
pip install bump-version
```

## Usage

```bash
usage: bump-version [-h] [--commit] [--tag] {major,minor,patch}

positional arguments:
  {major,minor,patch}  The type of version bump

options:
  -h, --help           show this help message and exit
  --commit             Create a commit
  --tag                Create a tag
```
