Metadata-Version: 2.4
Name: getgauge-cli
Version: 1.6.31
Home-page: https://github.com/getgauge/gauge
Author: getgauge
Author-email: getgauge@googlegroups.com
Maintainer: getgauge
License: Apache-2.0
Platform: Windows
Platform: Linux
Platform: Unix
Platform: Mac OS-X
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Internet
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: maintainer
Dynamic: platform
Dynamic: requires-dist

# PIP Installer for getgauge-cli tool

This `setup.py` file is used for installing the getgauge-cli tool. The Python package can be installed multiple ways:

## using pip

- pre-requisite: pip should be installed and available on machine
- run the command `pip install getgauge-cli`

## using setup.py

- Navigate to the current directory `gauge\build\pip\`
- Run `python build.py --install` on command prompt (it will install the latest released version)
- To install a specific version set `GAUGE_VERSION` environment variable.

## Check to ensure getgauge-cli is installed

- Once the package has been setup. please exit the current terminal and relaunch terminal again
- run the command `gauge` , you should be able to see similar output
```
Usage:
  gauge <command> [flags] [args]

# ...etc
```

## Using setup.py
- Install required dep by running `python/python3 -m pip install requirements.txt`.
- Check through and obtain a valid tag/build number from [releases](https://github.com/getgauge/gauge/releases)
- Run the command `python build.py --install` (set GAUGE_VERSION env to install specific version)
- This would install the version as specified along with latest release of Gauge-CLI Version

- Run the command `python build.py --dist` to generate the PyPi distributable (set GAUGE_VERSION env to install specific version)

## Uninstalling Gauge CLI

Gauge CLI uninstall should be done manually for now.
Run the following command on your prompt
```
$ pip uninstall gauge-cli
```
