#!/bin/bash

find . -mindepth 1 \
    \( -name 'flask-venv*' -o -name 'clean' -o -name '.git' \) -prune \
    -o -exec rm -rf {} +
