forked from konfuzio-ai/ai-comedy-club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 839 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
from setuptools import setup, find_packages
setup(
name="ComedyClubChallenge",
version="0.1",
packages=find_packages(),
python_requires='>=3.9',
install_requires=[
"fastapi",
"uvicorn",
"transformers>=4.0",
"textblob>=0.15.3",
"torch>=1.8.1",
"pytest>=6.2.2",
"hypothesis>=6.79.1",
"sentence-transformers>=2.2.2",
"pandas>=2.0.2",
"openai==0.28.0",
"mock>=5.0.2",
"python-dotenv>=1.0.0",
"gpt-2-simple",
"alt-profanity-check>=1.2.2",
"sentencepiece==0.1.99",
"datasets==2.13.1",
"accelerate==0.20.3",
"scikit-learn==1.2.2",
],
author="Konfuzio",
description="A challenge for Python developers to create AI agents that tell and rate jokes.",
license="MIT",
)