-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 851 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 851 Bytes
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
from setuptools import setup, find_packages
setup(
name = "hey-gpt",
version = "1.1.4",
author = "Lennard Voogdt",
author_email = "lennard@spring.nl",
description = ("Use OpenAI/ChatGPT gpt-3.5-turbo on the command-line"),
license = "MIT",
keywords = "openai, chatgpt, ask, commandline, cli",
url = "https://github.com/lennardv2/hey-gpt-cli",
packages=find_packages(),
include_package_data=True,
install_requires=['pygments', 'simple_term_menu', 'prompt_toolkit', 'tiktoken', 'colorama', 'pyyaml', 'openai', 'distro', 'termcolor'],
entry_points={
'console_scripts': [
'hey = hey:main',
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
],
)