This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
/
setup.py
55 lines (51 loc) · 2.05 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from pathlib import Path
from setuptools import find_namespace_packages
from setuptools import setup
DOCS_PATH = Path(__file__).parents[0] / "docs/README.md"
PATH = Path("README.md")
if not PATH.exists():
with open(DOCS_PATH, encoding="utf-8") as f1:
with open(PATH, "w+", encoding="utf-8") as f2:
f2.write(f1.read())
VERSION_PATH = Path(__file__).parents[0] / "src/revChatGPT/version.py"
with open(VERSION_PATH, encoding="utf-8") as f:
version = f.read().split('"')[1]
setup(
name="revChatGPT",
version=version,
description="ChatGPT is a reverse engineering of OpenAI's ChatGPT API",
long_description=open(PATH, encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/acheong08/ChatGPT",
project_urls={
"Bug Report": "https://github.com/acheong08/ChatGPT/issues/new?assignees=&labels=bug-report&template=bug_report.yml&title=%5BBug%5D%3A+",
"Feature request": "https://github.com/acheong08/ChatGPT/issues/new?assignees=&labels=enhancement&template=feature_request.yml&title=%5BFeature+Request%5D%3A+",
},
author="Antonio Cheong",
author_email="[email protected]",
license="GNU General Public License v2.0",
packages=find_namespace_packages("src"),
package_dir={"": "src"},
py_modules=["revChatGPT"],
package_data={"": ["*.json"]},
install_requires=[
"OpenAIAuth>=3.0.0",
"requests[socks]",
"httpx[socks]",
"prompt-toolkit",
"tiktoken>=0.3.0",
"openai",
"rich",
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)