This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
55 lines (53 loc) · 1.72 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 setuptools import setup
__version__ = "1.5.9"
__author__ = "Smartwa Caleb"
__repo__ = "https://github.com/Simatwa/gpt-cli"
__info__ = "Interact with ChatGPT and Bard at the terminal."
setup(
name="chatgpt4-cli",
packages=["GPTCLI"],
version=__version__,
license="MIT",
author=__author__,
maintainer=__author__,
author_email="smartwacaleb@gmail.com",
description=__info__,
url=__repo__,
project_urls={"Bug Report": f"{__repo__}/issues/new"},
install_requires=[
"numpy>=1.23.4",
"colorama>=0.4.6",
"openai>=0.26.4",
"revChatGPT==4.0.6",
"appdirs>=1.4.4",
"requests>=2.28.2",
"tabulate>=0.9.0",
"GoogleBard==1.4.0",
"fpdf==1.7.2",
],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Free For Home Use",
"Topic :: Home Automation",
"Intended Audience :: Customer Service",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={
"console_scripts": [
("gpt-cli = GPTCLI.gptcli:main"),
("gpt-cli-image = GPTCLI.image:main"),
("gpt-cli-emage = GPTCLI.emage:main"),
]
},
)