forked from TheR1D/shell_gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 829 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
from setuptools import setup, find_packages
# pylint: disable=consider-using-with
setup(
name="shell_gpt",
version="0.8.5",
packages=find_packages(),
install_requires=[
"typer~=0.7.0",
"requests~=2.28.2",
"rich==13.3.1",
"distro~=1.8.0",
],
extras_require={
':sys_platform == "win32"': ["pyreadline3"]
},
entry_points={
"console_scripts": ["sgpt = sgpt:cli"],
},
author="Farkhod Sadykov",
author_email="farkhod@sadykov.dev",
description=(
"A command-line productivity tool powered by ChatGPT, "
"will help you accomplish your tasks faster and more efficiently."
),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ther1d/shell_gpt",
)