Metadata-Version: 2.4
Name: SimpleTki
Version: 0.1.0
Summary: A simple wrapper for Tkinter
Author: SummerCapybara
License: MIT
Keywords: tkinter,gui,simple
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

**SimpleTki**

SimpleTki is a lightweight Python library that simplifies the creation of graphical user interfaces using Tkinter. Compatible with Python 3.8+, and cross-platform support (Windows, macOS, Linux).

Installation

Install via pip (once published):
pip install SimpleTki

Or install from source:
git clone https://github.com/SummerCapybara/SimpleTki.git
cd SimpleTki
pip install .

# pip install SimpleTki  <- for PyPI
# from SimpleTki import SimpleTk  <- for Python import


Usage

from SimpleTki import SimpleTk

# Create a window
app = SimpleTk()
app.title("My App")
app.run()


Contributing & License

Contributions are welcome! Please fork the repository and submit pull requests for improvements or bug fixes. This project is licensed under the MIT License. See the LICENSE file for details.

Links

GitHub Repository: https://github.com/SummerCapybara/SimpleTki





