web3-starter-py/boilerplates-click
mvonsteinkirch d24d37806d 💾
2022-12-24 14:51:10 -08:00
..
src 💾 2022-12-24 14:51:10 -08: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 💾 2022-12-24 14:51:10 -08:00
setup.py 💾 2022-12-24 14:51:10 -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 .