Metadata-Version: 2.4
Name: emotionx
Version: 0.0.1
Summary: A simple text emotion detection tool based on keyword matching.
Author: Shawn
Author-email: Shawn Mendes <example@email.com>
License: MIT License
Project-URL: Homepage, https://pypi.org/project/textemotionx/
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author

# emotionX

TextemotionX-NLP is a simple Python library for detecting emotions in text using keyword matching.

## Features
- Detects: happy, sad, angry, fear, love, neutral
- Offline, fast, zero dependencies
- Beginner-friendly

## Installation
```bash
pip install textemotionx-nlp
```


## Usage
```bash
from textemotionx-nlp import detect_emotion

print(detect_emotion("I love you"))

