Files
shell_gpt/setup.py
T
Farkhod Sadykov 8fe43f562d Option to change completion color (#157)
* Optimized config module with Config class.
* Added config option to change OpenAI completion color in terminal.
2023-04-10 12:18:21 +02:00

30 lines
829 B
Python

from setuptools import setup, find_packages
# pylint: disable=consider-using-with
setup(
name="shell_gpt",
version="0.8.7",
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",
)