web3-starter-py/boilerplates-click
dr. mia von steinkirch, phd 3c5c09f62b
Update README.md
2023-02-12 12:00:59 -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 Update README.md 2023-02-12 12:00:59 -08:00
requirements.txt 💾 2022-12-24 14:51:10 -08:00
setup.py 💾 2022-12-24 14:51:10 -08:00

Click / 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 .