-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (31 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# setup.py
# Author: Ankit Aglawe
from setuptools import find_packages, setup
setup(
name="emotionclassifier",
version="0.1.0",
description="A flexible emotion classifier with support for multiple models",
author="Ankit Aglawe",
author_email="[email protected]",
url="https://github.com/ankit-aglawe/emotionclassifier",
packages=find_packages(),
install_requires=[
"torch",
"transformers",
"numpy",
"pandas",
"matplotlib",
"click",
],
entry_points={
"console_scripts": [
"emotionclassifier=emotion_classifier.cli:classify_text",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)