-
Notifications
You must be signed in to change notification settings - Fork 82
/
pyproject.toml
48 lines (43 loc) · 1.33 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "gpt-command-line"
version = "0.3.0"
description = "Command-line interface for ChatGPT and Claude"
authors = [{name = "Val Kharitonov", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
keywords = ["cli", "command-line", "assistant", "openai", "claude", "cohere", "gpt-3", "gpt-4", "llm", "chatgpt", "gpt-cli", "anthropic", "gpt-client", "anthropic-claude"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"anthropic~=0.39.0",
"attrs~=24.2.0",
"black~=24.10.0",
"cohere~=5.11.4",
"google-generativeai==0.7.2",
"openai~=1.54.4",
"prompt-toolkit~=3.0.48",
"pytest~=8.3.3",
"PyYAML~=6.0.2",
"rich~=13.9.4",
"typing_extensions~=4.12.2",
"pydantic<2",
]
[project.optional-dependencies]
llama = [
"llama-cpp-python==0.2.74",
]
[project.urls]
"Homepage" = "https://github.com/kharvd/gpt-cli"
[project.scripts]
gpt = "gptcli.gpt:main"
[build-system]
requires = ["pip>=23.0.0", "setuptools>=58.0.0", "wheel"]
build-backend = "setuptools.build_meta"