web3-starter-py/Click_app
2020-02-11 10:35:33 -08:00
..
tests add a few simple boilerplates 2020-02-11 10:35:33 -08:00
yourapp add a few simple boilerplates 2020-02-11 10:35:33 -08:00
Makefile add a few simple boilerplates 2020-02-11 10:35:33 -08:00
pytest.ini add a few simple boilerplates 2020-02-11 10:35:33 -08:00
README.md add a few simple boilerplates 2020-02-11 10:35:33 -08:00
requirements.txt add a few simple boilerplates 2020-02-11 10:35:33 -08:00
setup.py add a few simple boilerplates 2020-02-11 10:35:33 -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 .