-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
37 lines (33 loc) · 1001 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gpt-chatbot-cli"
version = "0.3.4"
authors = [
{ name="Ruben Kharel", email="[email protected]" },
]
description = "A minimal chatgpt cli"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["chatgpt", "gpt-chatbot", "chatgpt-cli"]
classifiers = [
'Development Status :: 4 - Beta',
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.9',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities',
]
dependencies = [
"openai==0.27.4",
'prompt-toolkit==3.0.38',
'termcolor==2.2.0',
'tinydb==4.7.1',
'click==8.1.3'
]
[project.urls]
Homepage = "https://github.com/rukh-debug/gpt-chatbot-cli"
"Bug Tracker" = "https://github.com/rukh-debug/gpt-chatbot-cli/issues"
[project.scripts]
gpt-chatbot-cli = "gptchatbotcli.index:main"