first commit

This commit is contained in:
2024-03-08 16:51:35 +00:00
commit 26fe54f20c
90 changed files with 24232 additions and 0 deletions

9
scripts/pip_clean.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Removes any lingering build/release files from the project directory
find . -type f -name '*.pyc' -delete
find . -type f -name '*.pyo' -delete
find . -type d -name '__pycache__' -exec rm -rv {} +
find . -type d -name 'build' -exec rm -rv {} +
find . -type d -name 'dist' -exec rm -rv {} +
find . -type d -name '*.egg-info' -exec rm -rv {} +