-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (31 loc) · 1.07 KB
/
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
[project]
name = "chatgpt-cli-md"
version = "0.1.13"
description = "A markdown-supported command-line interface tool that connects to ChatGPT using OpenAI's API key."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = [
"chatbot",
"chatgpt",
"chatgpt-cli",
"openai",
"markdown",
"cli",
"command-line",
]
authors = [{ name = "Jerry Yang", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
scripts = { chatgpt-cli = "chatgpt_cli.chat:main" }
dependencies = ["openai >= 0.27.0", "pyyaml >= 6.0", "rich >= 13.3.1", "pyreadline3 >= 3.4.1; platform_system=='Windows'"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/efJerryYang/chatgpt-cli"
"Bug Tracker" = "https://github.com/efJerryYang/chatgpt-cli/issues"
"Repository" = "https://github.com/efJerryYang/chatgpt-cli.git"