Initial setup

This commit is contained in:
2022-07-24 16:26:21 -05:00
commit 7665938ac3
11 changed files with 839 additions and 0 deletions

9
setup.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env sh
command -v poetry; EXIT_CODE=$?
if [ "$EXIT_CODE" != "0" ]; then
python -m pip install poetry
fi
poetry install