Alamgirapi's picture
Update setup.py
72c250a verified
raw
history blame contribute delete
543 Bytes
from setuptools import setup, find_packages
setup(
name="NoCodeTextClassifier",
version="1.0.0",
packages=find_packages(),
install_requires=[
"streamlit>=1.28.1",
"pandas>=2.0.3",
"matplotlib>=3.7.2",
"numpy>=1.24.3",
"scikit-learn>=1.3.0",
"seaborn>=0.12.2",
"plotly>=5.15.0",
"nltk>=3.8.1",
"wordcloud>=1.9.2",
"textblob>=0.17.1",
],
author="Your Name",
description="No Code Text Classification Tool",
python_requires=">=3.9",
)