#!/bin/bash

set -e

python3 -m venv .venv
source .venv/bin/activate
poetry install
poetry run pre-commit install
