Metadata-Version: 2.1
Name: pkgversions
Version: 0.2.2
Summary: A build help tool
Home-page: https://github.com/hasii2011/pkgversions
Author-email: Humberto.A.Sanchez.II@gmail.com
Description-Content-Type: text/markdown
License-File: LICENSE

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![PyPI version](https://badge.fury.io/py/pkgversions.svg)](https://badge.fury.io/py/pkgversions)
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
[![macOS](https://svgshare.com/i/ZjP.svg)](https://svgshare.com/i/ZjP.svg)

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)

## Introduction
This is a simple CLI that allows you to update package versions during development.  It creates a versions file that you can incorporate in your About Dialog.

This command has to be run solely during development and in the virtual environment of the 
target py2app application.

## Install pkgversions in your virtual environment
This utility is distributed via [pypi](https://pypi.org/project/pkgversions/) packages.

Install like this:
```commandline
pip3 install pkgversions
```


##How to use
```commandline
pkgversions --help
Usage: pkgversions [OPTIONS]

  For best results install this command in the virtual environment that
  contains the packages that you intend to query

Options:
  -p, --package-file PATH   location of packages list file
  -o, --versions-file PATH  location of generated versions file
  --version                 Show the version and exit.
  --help                    Show this message and exit.
```

## Format of Package File
This file is the name of the python packages one per line

For example:

```text
todoist-python
PyGithub
```

## Format of Versions File
The utility creates a versions file one line per package name with the version number.

For example:
```properties
todoist-python=8.1.3
PyGithub=1.54.1
```
