2020-11-20 19:22:31 -06:00
|
|
|
# Python-With-Gtk-Template
|
2020-05-07 19:04:09 -05:00
|
|
|
A template project for Python with Gtk applications.
|
2022-01-23 17:59:25 -06:00
|
|
|
|
|
|
|
|
### Requirements
|
2023-09-23 00:12:36 -05:00
|
|
|
* PyGObject (Gtk introspection library)
|
|
|
|
|
* pyxdg (Desktop ".desktop" file parser)
|
|
|
|
|
* setproctitle (Define process title to search and kill more easily)
|
|
|
|
|
* sqlmodel (SQL databases and is powered by Pydantic and SQLAlchemy)
|
2022-01-23 17:59:25 -06:00
|
|
|
|
|
|
|
|
### Note
|
2023-03-06 21:26:48 -06:00
|
|
|
There are a "\<change_me\>" strings and files that need to be set according to your app's name located at:
|
2022-01-23 17:59:25 -06:00
|
|
|
* \_\_builtins\_\_.py
|
2023-03-06 21:26:48 -06:00
|
|
|
* user_config/bin/app_name
|
2022-03-03 01:31:48 -06:00
|
|
|
* user_config/usr/share/app_name
|
2023-03-06 21:26:48 -06:00
|
|
|
* user_config/usr/share/app_name/icons/app_name.png
|
|
|
|
|
* user_config/usr/share/app_name/icons/app_name-64x64.png
|
|
|
|
|
* user_config/usr/share/applications/app_name.desktop
|
2022-03-03 01:31:48 -06:00
|
|
|
|
2023-03-06 21:26:48 -06:00
|
|
|
|
|
|
|
|
For the user_config, after changing names and files, copy all content to their respective destinations.
|
|
|
|
|
The logic follows Debian Dpkg packaging and its placement logic.
|