mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04: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 .