web3-starter-py/boilerplates-click
2022-03-23 18:32:49 +04:00
..
tests cleanup names for dirs 2022-03-23 18:32:49 +04:00
yourapp cleanup names for dirs 2022-03-23 18:32:49 +04:00
Makefile cleanup names for dirs 2022-03-23 18:32:49 +04:00
pytest.ini cleanup names for dirs 2022-03-23 18:32:49 +04:00
README.md cleanup names for dirs 2022-03-23 18:32:49 +04:00
requirements.txt cleanup names for dirs 2022-03-23 18:32:49 +04:00
setup.py cleanup names for dirs 2022-03-23 18:32:49 +04: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 .