Metadata-Version: 2.4
Name: pyconverters-inscriptis
Version: 0.6.5
Summary: Convert HTML to text using inscriptis
Project-URL: Homepage, https://github.com/oterrier/pyconverters_inscriptis/
Author-email: Olivier Terrier <olivier.terrier@kairntech.com>
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Requires-Dist: beautifulsoup4
Requires-Dist: inscriptis>=2.3.2
Requires-Dist: pymultirole-plugins<0.7.0,>=0.6.0
Provides-Extra: dev
Requires-Dist: bump2version; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Provides-Extra: docs
Requires-Dist: jupyter-sphinx; extra == 'docs'
Requires-Dist: lxml-html-clean; extra == 'docs'
Requires-Dist: m2r2; extra == 'docs'
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Requires-Dist: sphinxcontrib-apidoc; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: ruff; extra == 'test'
Description-Content-Type: text/markdown

## Requirements

- Python 3.12+
- uv as the package manager
- Pydantic v2 for the data parts.

## Installation
```
pip install pyconverters-inscriptis
```

## Publish the Python Package to PyPI
- Increment the version of your package in the `src/pyconverters_inscriptis/__init__.py` file:
```python
"""Sherpa HTML inscriptis converter"""

__version__ = 'x.y.z'
```
- Build and publish
```
uv build
uv publish
```
