simple python environment for fast prototyping
- pipenv
- pyenv
# install all dependencies
$ pipenv install -d
# use pipenv shell
$ pipenv shell
# run application
$ pipenv run python main.py
# run linter
$ pipenv run pylint *.py
# run tests
$ pipenv run pytest