mirror of
https://github.com/TheR1D/shell_gpt.git
synced 2026-07-03 14:10:18 +02:00
27 lines
666 B
Python
27 lines
666 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="shell_gpt",
|
|
version="0.4.1",
|
|
packages=find_packages(),
|
|
py_modules=[
|
|
"sgpt",
|
|
],
|
|
install_requires=[
|
|
"typer~=0.7.0",
|
|
"requests~=2.28.2",
|
|
"rich==13.3.1",
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'sgpt = sgpt:entry_point'
|
|
],
|
|
},
|
|
author="Farkhod Sadykov",
|
|
author_email="farkhod@sadykov.dev",
|
|
description="CLI App allows to query OpenAI GPT-3 models using API.",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/ther1d/shell_gpt",
|
|
)
|