poetry

  1. install (https://python-poetry.org/docs/)
curl -sSL [<https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py>](<https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py>) | python -
  1. create pyproject.toml inside project
poetry init
  1. use Python 3.x for project
poetry env use python3
  1. add dependencies, updates pyproject.toml
poetry add <dependencies>
  1. run tests
poetry run pytest