Metadata-Version: 2.1
Name: mygui
Version: 0.0.1
Summary: A Simple icon to replace the tkinter feather for your programs
Home-page: http://Caveman-Software.github.com
Author: Michael E Mulvey
Author-email: michael.e.mulvey@gmail.com
Project-URL: Bug Tracker, http://Caveman-Software.github.com/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# mygui 0.0.1
A Simple icon to replace the tkinter feather for your programs.

example:

#================================================================================

    import os
    from mygui import lgrid
    from tkinter import Tk
    root=Tk()
    root.minsize(300,100)
    # Add Icon to windows Titlebar if running Windows.
    if os.name == 'nt':
        homepath = os.path.expanduser('~')
        tempFile = '%s\Caveman Software\%s' % (homepath, 'Icon\icon.ico')

        if (os.path.exists(tempFile) == True):
            root.wm_iconbitmap(default=tempFile)

        else:
            os.system('pip install create_icon')
            import create_icon
            print('File Created')
            root.wm_iconbitmap(default=tempFile)
    lgrid(root,'Label placed in grid 5,5', 5,5)
    lgrid(root,'Label placed in grid 6,6', 6,6)

    root.mainloop()

#================================================================================

The above example allows the icon to be place in the menubar 
