Metadata-Version: 2.4
Name: summariser
Version: 0.1.0
Summary: Minimal text summarization helper using HuggingFace transformers.
Author-email: Parth Zanwar <parthzanwr1509@gmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: transformers>=4.0
Requires-Dist: torch
Dynamic: license-file

# summariser

A tiny, easy-to-use text summarization helper built on HuggingFace transformers.

## Usage
```python
from summariser import summarise

text = "OpenAI released multiple models capable of handling a wide variety of tasks..."
print(summarise(text))
```
