2024-06-29 00:07:08 +00:00
[ build-system ]
requires = [ "poetry-core>=1.0.0" , ]
build-backend = "poetry.core.masonry.api"
2023-12-20 02:55:19 +00:00
[ tool . poetry ]
name = "langchain-anthropic"
2024-07-02 22:17:25 +00:00
version = "0.1.19"
2023-12-20 02:55:19 +00:00
description = "An integration package connecting AnthropicMessages and LangChain"
authors = [ ]
readme = "README.md"
2024-01-12 18:09:02 +00:00
repository = "https://github.com/langchain-ai/langchain"
2024-01-17 16:37:13 +00:00
license = "MIT"
2024-01-12 18:09:02 +00:00
2024-06-29 00:07:08 +00:00
[ tool . mypy ]
disallow_untyped_defs = "True"
2024-01-12 18:09:02 +00:00
[ tool . poetry . urls ]
"Source Code" = "https://github.com/langchain-ai/langchain/tree/master/libs/partners/anthropic"
2023-12-20 02:55:19 +00:00
[ tool . poetry . dependencies ]
python = ">=3.8.1,<4.0"
2024-05-31 19:10:22 +00:00
anthropic = ">=0.28.0,<1"
2024-06-29 00:07:08 +00:00
[ tool . ruff . lint ]
select = [ "E" , "F" , "I" , "T201" , ]
[ tool . coverage . run ]
omit = [ "tests/*" , ]
[ tool . pytest . ini_options ]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5"
markers = [ "requires: mark tests as requiring a specific library" , "asyncio: mark tests as requiring asyncio" , "compile: mark placeholder test used to compile integration tests without running them" , ]
asyncio_mode = "auto"
[ tool . poetry . dependencies . langchain-core ]
version = ">=0.2.10,<0.3"
[ tool . poetry . dependencies . defusedxml ]
version = "^0.7.1"
optional = true
2023-12-20 02:55:19 +00:00
[ tool . poetry . group . test ]
optional = true
2024-06-29 00:07:08 +00:00
[ tool . poetry . group . codespell ]
optional = true
[ tool . poetry . group . lint ]
optional = true
[ tool . poetry . group . dev ]
optional = true
[ tool . poetry . group . test_integration ]
optional = true
2023-12-20 02:55:19 +00:00
[ tool . poetry . group . test . dependencies ]
pytest = "^7.3.0"
freezegun = "^1.2.2"
2024-02-14 16:57:46 +00:00
pytest-mock = "^3.10.0"
2023-12-20 02:55:19 +00:00
syrupy = "^4.0.2"
pytest-watcher = "^0.3.4"
pytest-asyncio = "^0.21.1"
2024-03-05 16:30:16 +00:00
defusedxml = "^0.7.1"
2023-12-20 02:55:19 +00:00
[ tool . poetry . group . codespell . dependencies ]
codespell = "^2.2.0"
[ tool . poetry . group . lint . dependencies ]
2024-02-26 05:57:26 +00:00
ruff = ">=0.2.2,<1"
2023-12-20 02:55:19 +00:00
[ tool . poetry . group . typing . dependencies ]
2024-06-03 15:21:55 +00:00
mypy = "^1"
2023-12-20 02:55:19 +00:00
2024-06-29 00:07:08 +00:00
[ tool . poetry . group . test . dependencies . langchain-core ]
path = "../../core"
develop = true
2023-12-20 02:55:19 +00:00
2024-06-29 00:07:08 +00:00
[ tool . poetry . group . test . dependencies . langchain-standard-tests ]
path = "../../standard-tests"
develop = true
2023-12-20 02:55:19 +00:00
2024-07-02 22:17:25 +00:00
[ tool . poetry . group . dev . dependencies . langchain-core ]
2024-06-29 00:07:08 +00:00
path = "../../core"
develop = true
2023-12-20 02:55:19 +00:00
2024-07-02 22:17:25 +00:00
[ tool . poetry . group . test_integration . dependencies . langchain-core ]
2024-06-29 00:07:08 +00:00
path = "../../core"
develop = true
2023-12-20 02:55:19 +00:00
2024-07-02 22:17:25 +00:00
[ tool . poetry . group . typing . dependencies . langchain-core ]
2024-06-29 00:07:08 +00:00
path = "../../core"
develop = true