Metadata-Version: 2.1
Name: pygame-widgets
Version: 0.5.3
Summary: Widgets for use with Pygame
Home-page: https://github.com/AustL/PygameWidgets
Author: AustL
Author-email: 21chydra@gmail.com
License: MIT
Description: # Pygame Widgets
        
        A helper module for common widgets that may be required in developing applications with Pygame. It supports fully
        customisable buttons, collections of buttons, textboxes and sliders. If there are any widgets that you would like to see
        added, please create an issue!
        
        ## NEW FEATURES
        
        * Dropdown: Select options from a list that appears when hovered over
        * Progress Bar: Shows a percentage of completeness, great for loading screens and health bars
        * Toggle: Allows switching between two values, great for settings
        * Animations: Create an animation that changes a widgets attributes over some time, running on a separate thread
        
        ## Prerequisites
        
        * [Python 3](https://www.python.org/downloads) `>= 3.7`
        * [Pygame](https://www.pygame.org/wiki/GettingStarted) `>= 2.0.0`
        
        ## Installation
        
        Ensure that Python 3 and pip are installed and added to your environment PATH.
        
        ```python -m pip install pygame-widgets```
        
        Open a Python console and run the following command.
        
        ```import pygame_widgets```
        
        If you receive no errors, the installation was successful.
        
        ## Usage
        
        * [Common](docs/common.md)
        * [Button](docs/button.md)
        * [ButtonArray](docs/buttonarray.md)
        * [TextBox](docs/textbox.md)
        * [Slider](docs/slider.md)
        * [Toggle](docs/toggle.md)
        * [ProgressBar](docs/progressbar.md)
        * [Dropdown](docs/dropdown.md)
        * [Animations](docs/animations.md)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
