-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 742 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 742 Bytes
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
from setuptools import find_packages, setup
setup(
name="sentiment_analysis",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
"transformers>=4.30.0",
"torch>=2.0.0",
"datasets>=2.12.0",
"fastapi>=0.100.0",
"uvicorn>=0.22.0",
"pydantic>=2.0.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"scikit-learn>=1.2.0",
"prometheus-client>=0.16.0",
],
extras_require={
"dev": [
"pytest>=7.3.0",
"pytest-cov>=4.1.0",
"black>=23.3.0",
"isort>=5.12.0",
"mypy>=1.3.0",
"flake8>=6.0.0",
],
},
python_requires=">=3.9",
)