-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.36 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
from setuptools import setup
version = "0.1.0"
description = "A command line tool to chat with GPT4 and render markdown response."
with open("README.md") as fp:
long_description = fp.read()
url = "https://github.com/imhuwq/v4xyz"
author = "imhuwq"
author_email = "[email protected]"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat",
"Topic :: Terminals",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
]
setup(name="v4xyz",
version=version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url=url,
author=author,
author_email=author_email,
license="Apache License 2.0",
packages=[],
py_modules=["v4"],
entry_points={
"console_scripts": [
"v4=v4:main",
],
},
install_requires=[
"art==5.9",
"click==8.1.3",
"openai==0.27.6",
"rich==13.3.5"
],
classifiers=classifiers,
)