Metadata-Version: 2.1
Name: package-controller
Version: 0.3.0
Summary: A simple package for managing packages
Home-page: https://github.com/alexseitsinger/package_controller
Author: Alex Seitsinger
Author-email: contact@alexseitsinger.com
License: BSD 2-Clause License
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: semver

# Package Controller

## Description

A package that manages packages

## Installation

```
pip install package_controller
```

## Usage

To increase the patch version
```
pc version --patch (--git)
```

To increase the minor version
```
pc version --minor (--git)
```

To increase the major version
```
pc version --major (--git)
```

To get the current version
```
pc version
```


