Metadata-Version: 2.1
Name: gui-menu
Version: 2.0.1
Summary: Create easy-to-use gui menus for your projects.
Home-page: UNKNOWN
Author: Seth Peace
Author-email: sethevanpeace@gmail.com
License: MIT
Description: 
        # gui-menu: The Only Terminal-Based GUI Menu for Python!
        
        ## About
        
        gui-menu is a Python module that lets you put easy-to-use menus in your Python programs. It was developed by Seth Peace for SPPyOS (Seth Peace's Python OS, coming to PyPI soon).
        
        ## Installation
        
        Just run `python -m pip install gui-menu` or `py -m pip install gui-menu` (You may find only one works, or that both works. It depends on your Python setup.).
        
        ## Usage
        
        Using gui-menu is simple! Just run the following:
        
        ~~~
        
        import menu
        
        menu.menu(title="Title goes here", options=["Option 1 goes here", "Option 2 goes here", "etc."])
        
        ~~~
        
        It will return the index of the selcted option (i.e. if option 3 is selected it will return int(3)).
        ## Supported Systems
        
        This software has only been tested on a Windows 10 with Python 3.7. If someone could test it on another system and e-mail me how it works, great! I'll give you credit on this page.
        ## Changelog
         - 2.0.1 - Hopefully fixed import problem. Edited README.
         - 2.0.0 - Probably fixed the fact that menu.menu didn't work. Added info to README.
         - 1.0.0 - Initial release.
        ## Credits
        
        This module is (c) 2019 Seth Peace. The included "keyboard" module is (c) 2019 BoppreH (a PyPI user, I don't know his real name) and is located at [https://pypi.org/project/keyboard/](https://pypi.org/project/keyboard/).
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: ==3.7.0
Description-Content-Type: text/markdown
