-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 902 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gptcmd-anthropic"
version = "1.0.2"
authors = [
{ name="Bill Dengler", email="[email protected]" },
]
description = "Anthropic model support for Gptcmd"
readme = "README.md"
requires-python = ">=3.8.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
]
dependencies = ["gptcmd>=2.0.0", "anthropic>=0.42.0, <1.0.0"]
[project.urls]
"Homepage" = "https://github.com/codeofdusk/gptcmd-anthropic"
"Bug Tracker" = "https://github.com/codeofdusk/gptcmd-anthropic/issues"
[project.entry-points."gptcmd.providers"]
anthropic = "gptcmd_anthropic.anthropic:AnthropicProvider"
[tool.black]
line-length = 79
target-version = ['py38']
preview=true