Metadata-Version: 2.4
Name: calcuwidg
Version: 1.0.0
Summary: A Tkinter addon for easy calculator widget creation
Home-page: https://github.com/yourusername/calcuwidg
Author: Your Name
Author-email: Your Name <your.email@example.com>
Project-URL: Homepage, https://github.com/yourusername/calcuwidg
Project-URL: Bug Tracker, https://github.com/yourusername/calcuwidg/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Calcuwidg
Calcuwidg is an easy Python library for creating calculators in Tkinter.
Example usage:
```python
from calcuwidg import *
from tkinter import *
import tkinter as tk
w=tk.Tk()
w.geometry("400x400")
w.title("Calcuwidg Example")

calc=Calcuwidg(tkinter-window=w, operators=["+","-","*","/"], btn-color="black")

w.mainloop()
```
