From 435f9f80a80a6c2d1eadd17977b9e0252872fa17 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Mon, 13 Jun 2022 08:22:36 -0700 Subject: [PATCH] Update README with badges - Add badges with links - Add LICENSE file --- LICENSE | 9 +++++++++ README.rst | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3d155fc --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2022 Raoul Snyman + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF diff --git a/README.rst b/README.rst index bc4de1b..4dd0fb6 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,8 @@ WebAppify ========= +|pypi| |license| |build| + WebAppify is a simple module to easily create your own desktop apps of websites. WebAppify uses PyQt5 and QtWebEngine for displaying the web page, and works on Python 3.8 and up. @@ -39,3 +41,10 @@ To install a system tray icon, and minimize your application to the system tray, app = WebApp('OpenStreetMap', 'https://www.openstreetmap.org', 'osm.png', can_minimize_to_tray=True) Clicking on the tray icon will show the window, while right-clicking will show the menu. + +.. |pypi| image:: https://img.shields.io/pypi/v/WebAppify + :target: https://pypi.org/project/webappify/ +.. |license| image:: https://img.shields.io/pypi/l/WebAppify + :target: https://git.snyman.info/raoul/webappify/src/branch/master/LICENSE +.. |build| image:: https://ci.snyman.info/api/badges/raoul/webappify/status.svg + :target: https://ci.snyman.info/raoul/webappify