👾 blockchain starting kit - python edition
Find a file
2019-12-03 20:01:03 -08:00
.github 🔨Start boilerplate 2019-12-03 18:20:11 -08:00
tests 🛠 Commit simple boilerplate 2019-12-03 19:54:40 -08:00
yourapp 🛠 Commit simple boilerplate 2019-12-03 19:54:40 -08:00
.gitignore 🔧Add gitignore 2019-12-03 20:00:41 -08:00
Makefile 🛠 Commit simple boilerplate 2019-12-03 19:54:40 -08:00
pytest.ini 🛠 Commit simple boilerplate 2019-12-03 19:54:40 -08:00
README.md 🛠 remove 3 2019-12-03 20:00:04 -08:00
requirements.txt 🛠 Commit simple boilerplate 2019-12-03 19:54:40 -08:00
setup.py 🛠 Commit simple boilerplate 2019-12-03 19:54:40 -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 .