commit 02b7887cb62c9fbe9d380f2663589c95b3c6d407 Author: Alexander Popov Date: Thu Apr 24 05:18:26 2025 +0300 init diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..11111d8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig is awesome: https://EditorConfig.org +root = true + +# for all projects +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +# Markdown +[*.md] +trim_trailing_whitespace = false diff --git a/AppDir/AppRun b/AppDir/AppRun new file mode 100644 index 0000000..eac024e --- /dev/null +++ b/AppDir/AppRun @@ -0,0 +1,5 @@ +#!/bin/sh + +export PYTHONPATH="${PYTHONPATH}:${APPDIR}/usr/lib/python3.13/site-packages" + +${APPDIR}/usr/bin/python3.13 -m checker $1 diff --git a/AppDir/app.desktop b/AppDir/app.desktop new file mode 100644 index 0000000..a7c0f7d --- /dev/null +++ b/AppDir/app.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Name=Checker +Icon=checker +Terminal=false +Categories=Utility; diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/download-appimage-tool.sh b/download-appimage-tool.sh new file mode 100644 index 0000000..ae2d6eb --- /dev/null +++ b/download-appimage-tool.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage +chmod +x appimagetool-x86_64.AppImage \ No newline at end of file diff --git a/download-python.sh b/download-python.sh new file mode 100644 index 0000000..664faa8 --- /dev/null +++ b/download-python.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +wget https://github.com/niess/python-appimage/releases/download/python3.13/python3.13.2-cp313-cp313-manylinux2014_x86_64.AppImage +chmod +x python3.13.2-cp313-cp313-manylinux2014_x86_64.AppImage +mv python3.13.2-cp313-cp313-manylinux2014_x86_64.AppImage python3.13 diff --git a/get-requirements.sh b/get-requirements.sh new file mode 100644 index 0000000..c6837c7 --- /dev/null +++ b/get-requirements.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +./python3.13 -m pip install --target=$(pwd)/packages -r ../requirements.txt \ No newline at end of file