#!/bin/bash # Exit if any command fails set -e python3 -m pip install pipx pipx ensurepath # Dependency Management pipx install poetry # Linting pipx install flake8 pipx inject flake8 flake8-pyproject # Load configs from pyproject.toml file pipx install bandit pipx install pydocstyle # Formatting pipx install black # Type Checking pipx install mypy pipx inject mypy pydantic # pydantic mypy plugin support # Testing pipx install pytest ## Better output, coverage report support, and test parallelization pipx inject pytest pytest-sugar pytest-cov pytest-xdist