This commit is contained in:
Alexander Popov 2025-04-24 05:18:26 +03:00
commit 02b7887cb6
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
7 changed files with 38 additions and 0 deletions

15
.editorconfig Normal file
View File

@ -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

5
AppDir/AppRun Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
export PYTHONPATH="${PYTHONPATH}:${APPDIR}/usr/lib/python3.13/site-packages"
${APPDIR}/usr/bin/python3.13 -m checker $1

6
AppDir/app.desktop Normal file
View File

@ -0,0 +1,6 @@
[Desktop Entry]
Type=Application
Name=Checker
Icon=checker
Terminal=false
Categories=Utility;

0
README.md Normal file
View File

View File

@ -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

5
download-python.sh Normal file
View File

@ -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

3
get-requirements.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/sh
./python3.13 -m pip install --target=$(pwd)/packages -r ../requirements.txt