Metadata-Version: 2.4
Name: ezicon
Version: 1.0.1
Summary: Create Windows Start Menu shortcuts for Python scripts instantly.
Author: gusta01010
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: pywin32
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary

# ezicon

A simple tool to create Windows Start Menu shortcuts for Python scripts.

## Installation
```bash
pip install ezicon
```

## Usage

### Basic Usage
Create a shortcut for your script in the Start Menu:
```bash
ezicon my_script.py
```

### Custom Name
Specify a custom name for the shortcut:
```bash
ezicon my_script.py "My Awesome App"
```

### Clean Up
Remove all shortcuts created by `ezicon`:
```bash
ezicon --clean
```

After creating the program icon, you can execute your python script from the Start Menu.
