Metadata-Version: 2.1
Name: customGUI
Version: 1.0.4
Summary: Maker for custom-built GUI for Python
Home-page: https://github.com/Jaswar/Custom-GUI-Project
Author: Jan Warchocki
Author-email: janwarchocki@gmail.com
License: UNKNOWN
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
Requires-Dist: pygame

A simple package to create your own GUI.

To get started and create your own GUI, simply write:

    from customGUI.form_creator import FormCreator

    fc = FormCreator('save.txt')

    while True:
        fc.update()

Once you click CTRL+S, your newly created form will be saved to 'save.txt'.

