#!/usr/bin/env bash

# Safety first
set -o errexit -o pipefail -o nounset
# Change into the project's directory
cd "$(dirname "$0")/.."

# Install the dependencies and the local version of aiomqtt
poetry install --with dev --sync
