-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
32 lines (30 loc) · 906 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
32
from setuptools import setup, find_packages
# with open("readme.md", "r", encoding="utf-8") as fh:
# long_description = fh.read()
setup(
name="ChatGPT_PyBot",
version="0.4",
license="GNU General Public License v2.0",
author="Liuhuanshuo",
author_email="[email protected]",
description="A Python based ChatGPT robot",
long_description=open("readme.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/liuhuanshuo/ChatGPT_PyBot",
packages=find_packages(),
install_requires=[
"rich",
"requests",
"OpenAIAuth"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
entry_points={
"console_scripts": [
"chatgpt = ChatGPT_PyBot.chatgpt:main"
]
},
)