Metadata-Version: 2.1
Name: package-controller
Version: 0.4.2
Summary: A package that manages packages
Home-page: https://github.com/alexseitsinger/package_controller
Author: Alex Seitsinger
Author-email: contact@alexseitsinger.com
License: BSD 2-Clause License
Project-URL: Source, https://github.com/alexseitsinger/package_controller
Project-URL: Tracker, https://github.com/alexseitsinger/package_controller/issues
Keywords: package,semantic version,git,distribution
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: System :: Archiving :: Packaging
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Utilities
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
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 major version
```
pc version --major (--git)
```

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

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

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

To build the newest version.
```
pc build
```

To release the latest package.
```
pc release
```



