forked from acheong08/ChatGPT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (37 loc) · 1.14 KB
/
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
32
33
34
35
36
37
38
from setuptools import find_packages
from setuptools import setup
setup(
name="revChatGPT",
version="1.1.5",
license="GNU General Public License v2.0",
author="Antonio Cheong",
author_email="[email protected]",
description="ChatGPT is a reverse engineering of OpenAI's ChatGPT API",
packages=find_packages("src"),
package_dir={"": "src"},
py_modules=["revChatGPT", "GPTserver", "Official"],
url="https://github.com/acheong08/ChatGPT",
install_requires=[
"openai",
"tiktoken",
],
# optional dependencies
extras_require={
"api": ["flask"],
"unofficial": [
"undetected_chromedriver>=3.1.7",
"selenium>=4.7.2",
"tls_client>=0.1.7",
"2captcha-python>=1.1.3",
],
},
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"revChatGPT = revChatGPT.__main__:main",
"revApiGPT = revChatGPT.GPTserver:main",
"OfficialChatGPT = revChatGPT.Official:main",
],
},
)