Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 309 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 309 Bytes

Python env

simple python environment for fast prototyping

requirements

  • 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