Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions create_requirements.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

if ! which pigar > /dev/null
then
>&2 echo 'Please install pigar to generate requirements.txt for your version of Python.'
echo 'Pigar can be installed with:'
echo ' pip install pigar'
echo 'For more information, see https://github.com/damnever/pigar'
exit 1
fi

pigar gen -f Code/requirements.txt Code/
3 changes: 3 additions & 0 deletions nuitka_flywheel.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

python -m nuitka --follow-imports --standalone --output-dir="nuitka_out" "./Code/flywheel.py"
9 changes: 9 additions & 0 deletions render_uml.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/local/env bash

if ! which pyreverse > /dev/null
then
>&2 echo 'pyreverse was not found. Please install pyreverse then try this script again.'
exit 1
fi

pyreverse -o png Code/ --output-directory uml/