Metadata-Version: 2.1
Name: create-icon
Version: 0.4.7
Summary: A Simple icon to replace the tkinter feather for your programs
Home-page: https://github.com/Caveman-Software/create_icon
Author: Michael E Mulvey
Author-email: michael.e.mulvey@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Caveman-Software/create_icon/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.md
License-File: LICENSE.txt

# create_icon 0.4.7

<img src="https://raw.githubusercontent.com/Caveman-Software/mygui/main/Icon.png" width="35" height="35">  Caveman Software® 2022

Released 8/18/22

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

----------

### Example

    import os
    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:
            import create_icon
            print('File Created')
            root.wm_iconbitmap(default=tempFile)

    root.mainloop()

----------

The above example allows the icon to be place in the menubar
<head><script src='https://raw.githubusercontent.com/Caveman-Software/mygui/main/myprog.js'></script></head>
<div>
    <br><p><img onmouseover="enlargeImg(this)" onmouseout="normalImg(this)" src="https://github.com/Caveman-Software/create_icon/blob/main/Capture.PNG?raw=true"alt="Power Button" width="142" height="142" align="middle"> Diagram 1</p><br>
</div>

## CHANGELOG
# Version 0.4.6
+ Added Javascript script to Readme.md

# Version 0.4.5
- Added ability to view example

# Version 0.4.4
- Small fix to link to Github

# Version 0.4.3 - Official Release

- No fix just an official release of this module .

# Version 0.4.0

- Fixed Meta data info in readme.md

# Version 0.3.8

- Fixed a version problem. by removing it.

# Version 0.3.7

- Fixed the setup.cfg file to properly insert changelog and MIT License

# Version 0.3.6

- Added changelog.md
- Added License.md
- Added History.md

# Version 0.3.5

- Changes to CHANGELOG add

# History
## Create Icon version 0.4.5
+ Final fixes to Github views.


## Create Icon Version 0.4.2

+ Official release date 8/17/22

## Create Icon Version 0.3.7

+ Fixed config files

## Create Icon Version 0.3.6

+ Updated History file and Change / Added support files for PyPi
+ Added Version info
+ Added History (This file) to config file
+ Updated version to current

# MIT License

    Copyright (c) 2022 Michael Mulvey

    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 CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.


