diff --git a/init.sh b/init.sh new file mode 100644 index 0000000..4481e79 --- /dev/null +++ b/init.sh @@ -0,0 +1,9 @@ +echo "Checking environment..." +if command -v uv &> /dev/null; then + echo "uv installed" +else + echo "uv not installed. Install it via \"dnf install uv\" or \"apt install uv\" !" >&2 +fi + +uv venv +uv pip install -r requirements.txt \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 7235b4c..5423e0d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ prompt-toolkit==3.0.52 cryptography==48.0.0 -jproperties==2.1.2 \ No newline at end of file +jproperties==2.1.2 +nuitka==4.1.2 \ No newline at end of file