File size: 543 Bytes
72c250a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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",
)