🛠 Commit simple boilerplate

This commit is contained in:
MvS 2019-12-03 19:54:40 -08:00
parent 30fa78c7d9
commit 8270d63489
8 changed files with 123 additions and 2 deletions

View file

@ -1,2 +1,41 @@
# python3_CLI_boilerplate
A quick boilerplate for CLI apps/scripts in Python3
# 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:
```
pip3 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 .
```