Metadata-Version: 2.1
Name: ass-renderer
Version: 0.4
Summary: Render ASS subtitles as numpy bitmaps.
Home-page: https://github.com/bubblesub/ass_renderer
License: GPLv3
Author: Marcin Kurczewski
Author-email: dash@wind.garden
Requires-Python: >=3.9,<3.11
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: License :: Other/Proprietary License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing
Requires-Dist: Pillow (>=8.4.0,<9.0.0)
Requires-Dist: ass-parser (>=1.0,<2.0)
Requires-Dist: numpy (>=1.21.4,<2.0.0)
Project-URL: Repository, https://github.com/bubblesub/ass_renderer
Description-Content-Type: text/markdown

ass_renderer
==========

A Python library for rendering ASS subtitle file format using libass.

## Installation

```
pip install --user ass-renderer
```

## Contributing

```sh
# Clone the repository:
git clone https://github.com/bubblesub/ass_renderer.git
cd ass_renderer

# Install to a local venv:
poetry install

# Install pre-commit hooks:
poetry run pre-commit install

# Enter the venv:
poetry shell
```

This project uses [poetry](https://python-poetry.org/) for packaging,
install instructions at [poetry#installation](https://python-poetry.org/docs/#installation)

