Files
llm-claude-3/pyproject.toml
Simon Willison 1aa490cf9a Release 0.5
Refs #17
2024-10-22 09:29:36 -07:00

27 lines
687 B
TOML

[project]
name = "llm-claude-3"
version = "0.5"
description = "LLM access to Claude 3 by Anthropic"
readme = "README.md"
authors = [{name = "Simon Willison"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"llm",
"anthropic>=0.17.0",
]
[project.urls]
Homepage = "https://github.com/simonw/llm-claude-3"
Changelog = "https://github.com/simonw/llm-claude-3/releases"
Issues = "https://github.com/simonw/llm-claude-3/issues"
CI = "https://github.com/simonw/llm-claude-3/actions"
[project.entry-points.llm]
claude_3 = "llm_claude_3"
[project.optional-dependencies]
test = ["pytest", "pytest-recording"]