Files
llm-claude-3/pyproject.toml
Simon Willison c62bf247fa Release 0.10
Refs #29
2024-12-01 16:07:47 -08:00

27 lines
712 B
TOML

[project]
name = "llm-claude-3"
version = "0.10"
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>=0.19",
"anthropic>=0.39.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", "pytest-asyncio"]