-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (53 loc) · 1.65 KB
/
setup.py
File metadata and controls
54 lines (53 loc) · 1.65 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
setup(
name="sentiment_analysis",
version="0.1.0",
description="A comprehensive sentiment analysis system with multiple models",
author="Luke Wolf",
author_email="lawolf@usf.edu",
url="https://github.com/yourusername/sentiment-analysis-project",
packages=find_packages(),
install_requires=[
"tensorflow>=2.8.0",
"tensorflow-addons>=0.21.0",
"numpy>=1.20.0",
"pandas>=1.3.0",
"scikit-learn>=1.0.0",
"matplotlib>=3.4.0",
"scipy>=1.7.0",
"nltk>=3.6.0",
"tqdm>=4.62.0",
"grpcio>=1.24.3,<2.0.0",
"seaborn>=0.12.0",
"kagglehub>=0.1.5",
"python-dotenv>=1.0.0",
"contractions>=0.1.72",
"html5lib>=1.1",
"transformers>=4.30.0",
"sentencepiece>=0.1.99",
"torch>=2.0.0",
"torchvision>=0.15.0",
"torchtext>=0.15.0",
"datasets>=2.12.0",
"accelerate>=0.20.0",
"evaluate>=0.4.0",
"pytokenizations>=0.8.4",
"safetensors>=0.3.0",
"protobuf>=3.20.0",
"deepspeed>=0.9.0",
"tensorboard>=2.12.0",
"spacy>=3.5.0",
"wandb>=0.15.0"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.8",
)