web3-starter-py/CLI_app
2019-12-05 11:47:00 -08:00
..
tests add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00
yourapp add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00
Makefile add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00
pytest.ini add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00
README.md add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00
requirements.txt add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00
setup.py add dash for dashboards boilerpate 2019-12-05 11:47:00 -08:00

Awesome Python CLI Boilerplate

A quick boilerplate when creating a new CLI apps/scripts in Python3.

Install

Create and source a virtual environment:

virtualenv venv
source venv/bin/activate

Install dependencies:

pip install -r requirements.txt

Install package:

pip install .

Test your install with:

yourapp --help

Development

Create a virtual environment and install the package with an editable option:

pip install --editable .