mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-08-02 11:36:24 -04:00
🛠 Commit simple boilerplate
This commit is contained in:
parent
30fa78c7d9
commit
8270d63489
8 changed files with 123 additions and 2 deletions
43
README.md
43
README.md
|
@ -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 .
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue