Metadata-Version: 2.1
Name: vag
Version: 0.1.34
Summary: vagrant utility cli tool
License: MIT
Author: Seven Tella
Author-email: 7onetella@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: Click (>=7.1.2,<8.0.0)
Requires-Dist: jinja2 (>=2.11.2,<3.0.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: untangle (>=1.1.1,<2.0.0)
Description-Content-Type: text/markdown

# vag
vag is a command line utility tool for vagrant, docker and [builder](https://github.com/7onetella/containers/tree/master/builder)

## Documentation
[read the docs](https://vag.readthedocs.io/en/latest/index.html)

## Installation
```bash
$ pip install vag
```

## List of top level commands
```bash
$ vag
Usage: vag [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  build     Builds vagrant box
  clean     Cleans up vagrant build, terminates vagrant instance etc
  docker    Docker automation
  init      Creates a new Vagrantfile
  instance  Vagrant Instance Automation
  push      Publishes vagrant box to target environment
  ssh       SSH to vagrant test Vagrant instance
  test      Start a test Vagrant instance
  version   Prints version
```

## Development
local vag installation
```bash
$ rm -rf dist/*
$ poetry install
$ poetry build
$ pip uninstall -y vag
$ pip install dist/*.whl
```

edit and run 
```bash
$ poetry run vag vagrant list
```


