#!/bin/bash
script_name=$0
script_full_path=$(dirname "$script_name")
$script_full_path/build
source $script_full_path/../venv/bin/activate
python3 -m twine upload dist/*
deactivate
