init
This commit is contained in:
commit
02b7887cb6
15
.editorconfig
Normal file
15
.editorconfig
Normal 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
5
AppDir/AppRun
Normal 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
6
AppDir/app.desktop
Normal file
@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Checker
|
||||
Icon=checker
|
||||
Terminal=false
|
||||
Categories=Utility;
|
4
download-appimage-tool.sh
Normal file
4
download-appimage-tool.sh
Normal 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
5
download-python.sh
Normal 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
3
get-requirements.sh
Normal file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
./python3.13 -m pip install --target=$(pwd)/packages -r ../requirements.txt
|
Loading…
x
Reference in New Issue
Block a user