Metadata-Version: 2.1
Name: pytextpopup
Version: 0.1.0
Summary: A Python package that displays floating text windows on the screen at the cursor's position. The text can be customized with different fonts, colors, and scroll speeds.
Home-page: https://github.com/erax0r/pytextpopup
Author: Andrew Goetz
Author-email: erax0r@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: screeninfo


# pytextpopup

A Python package that displays floating text windows on the screen at the cursor's position. The text can be customized with different fonts, colors, and scroll speeds.

## Features

- Display floating text windows on the screen.
- Customize font, color, and scroll speed.
- Automatically adjusts the window size based on the screen resolution.

## Installation

You can install the package using pip:

```
pip install pytextpopup
```

## Usage

```python
from pytextpopup import text_popup

text_popup("Hello, World!")
```
