mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-11-08 10:32:57 -05:00
| .. | ||
| tests | ||
| yourapp | ||
| Makefile | ||
| pytest.ini | ||
| README.md | ||
| requirements.txt | ||
| setup.py | ||
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 .