Metadata-Version: 2.4
Name: DfGUI
Version: 0.1.0
Summary: Простая GUI библиотека на tkinter
Author: Team_S1S_TopTools
Author-email: hereiop@vk.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.1
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# RU:
# DfGUI – простая библиотека для GUI на Python

Основана на tkinter, автоматически подстраивается под DPI экрана.

## Установка

```bash
pip install DfGUI
Пример
python
import DfGUI as dg

dg.DPI()
win = dg.Window("Моя программа")
win.add(dg.Label(win, text="Привет!"))
win.run()
text

### 5. Создайте `LICENSE`

Выберите лицензию, например MIT. Файл можно создать с текстом лицензии (скопируйте с https://opensource.org/licenses/MIT).

### 6. Установите пакет локально

В командной строке перейдите в корневую папку `DfGUI/` и выполните:

```bash
pip install .
Эта команда установит вашу библиотеку в текущее окружение Python. После этого вы сможете импортировать её из любого скрипта:

python
import DfGUI as dg
dg.DPI()
win = dg.Window()
...

# --------------------------------------------------------------

#  USA# DfGUI – simple GUI library in Python

Based on tkinter, automatically adjusts to the DPI of the screen.

## Installation

```bash
pip install DfGUI
Example
python
import DfGUI as dg

dg.DPI()
win = dg.Window("My program")
win.add(dg.Label(win, text="Hello!"))
win.run()
text

### 5. Create a `LICENSE`

Select a license, such as MIT. You can create a file with the license text (copy from https://opensource.org/licenses/MIT).

### 6. Install the package locally

In the command line, navigate to the root folder of `DfGUI/` and run:

```bash
pip install .
This command will install your library in the current Python environment. After that, you can import it from any script:

python
import DfGUI as dg
dg.DPI()
win = dg.Window()
...

