Metadata-Version: 2.1
Name: winzy-text-on-image
Version: 0.1
Summary: Add text to an image.
Author: Sukhbinder Singh
License: Apache-2.0
Project-URL: Homepage, https://github.com/sukhbinder/winzy-text-on-image
Project-URL: Changelog, https://github.com/sukhbinder/winzy-text-on-image/releases
Project-URL: Issues, https://github.com/sukhbinder/winzy-text-on-image/issues
Project-URL: CI, https://github.com/sukhbinder/winzy-text-on-image/actions
Classifier: License :: OSI Approved :: Apache Software License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: winzy
Requires-Dist: pillow
Provides-Extra: test
Requires-Dist: pytest; extra == "test"

# winzy-text-on-image

[![PyPI](https://img.shields.io/pypi/v/winzy-text-on-image.svg)](https://pypi.org/project/winzy-text-on-image/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/winzy-text-on-image?include_prereleases&label=changelog)](https://github.com/sukhbinder/winzy-text-on-image/releases)
[![Tests](https://github.com/sukhbinder/winzy-text-on-image/workflows/Test/badge.svg)](https://github.com/sukhbinder/winzy-text-on-image/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/sukhbinder/winzy-text-on-image/blob/main/LICENSE)

Add text to an image.

## Installation

First configure your Winzy project [to use Winzy](https://github.com/sukhbinder/winzy).

Then install this plugin in the same environment as your Winzy application.
```bash
pip install winzy-text-on-image
```
## Usage

Usage instructions go here.

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-text-on-image
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
