Metadata-Version: 2.1
Name: text_emotion_description
Version: 0.2
Summary: A Python package for emotion detection using neural networks
Author: Ankith Manchale
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: seaborn
Requires-Dist: matplotlib
Requires-Dist: nltk
Requires-Dist: scikit-learn
Requires-Dist: tensorflow
Requires-Dist: keras
Requires-Dist: pickle

# emotion_description

emotion_description is a Python project that detects the emotion of text utilizing a neural network.


## Installation

```bash
pip install pandas
pip install numpy
pip install seaborn
pip install matplotlib
pip install nltk
pip install scikit-learn
pip install tensorflow
pip install keras
pip install pickle 
```

## Usage

```python
python main.py
```

## Contributing
Contributions to this project were made by Ankith Manchale and Debanshu Ganguly. Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.


## Liscence
Ankith License with Attribution

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software with attribution to the author, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

Attribution to the author must be prominently displayed in any
publications, distributions, or derivative works of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


