Metadata-Version: 2.4
Name: kivinter
Version: 0.1.1
Summary: Tkinter API emulator built on top of Kivy for Android and PC
Project-URL: Homepage, https://github.com/yourusername/kivinter
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
Requires-Dist: kivy
Dynamic: license-file

Вот готовый текст для README.md и файла LICENSE полностью на английском языке.
### 1. Файл README.md
```markdown
# MyTK

**kivinter** is a lightweight, Tkinter-compatible wrapper built on top of Kivy. It allows you to run classic Tkinter applications smoothly on Android devices (via Pydroid 3) and desktop environments without rewriting your UI logic.

## Key Features

- **Tkinter Compatibility:** Supports standard Tkinter widgets (`Tk`, `Label`, `Button`, `Entry`, `Frame`, `StringVar`, etc.).
- **Mobile Friendly:** Handles touch inputs cleanly and prevents double-tap bugs on Android.
- **Auto-Layout:** Clean top-to-bottom layout behavior similar to desktop Tkinter.

## Installation

Install the package via pip:

```bash
pip install kivinter

```
## Quick Start
Here is a simple example of how to build an app using **kivinter**:
```python
import mytk as tk

root = tk.Tk()
root.title("My First MyTK App")

label = tk.Label(root, text="Hello from MyTK!")
label.pack(pady=10)

def on_click():
    label.config(text="Button Clicked!")

button = tk.Button(root, text="Click Me", command=on_click)
button.pack(pady=5)

root.mainloop()

```
## License
This project is licensed under the MIT License - see the LICENSE file for details.

