forked from acheong08/ChatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 874 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
from setuptools import find_namespace_packages
from setuptools import setup
setup(
name="revChatGPT",
version="3.1.4",
description="ChatGPT is a reverse engineering of OpenAI's ChatGPT API",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/acheong08/ChatGPT",
author="Antonio Cheong",
author_email="[email protected]",
license="GNU General Public License v2.0",
packages=find_namespace_packages("src"),
package_dir={"": "src"},
py_modules=["V2", "V1", "V0", "V3"],
package_data={"": ["*.json"]},
install_requires=[
"OpenAIAuth==0.3.2",
"requests[socks]",
"httpx[socks]",
"prompt-toolkit",
"tiktoken>=0.3.0",
],
extras_require={
"WebGPT": ["duckduckgo_search"],
},
)