-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 965 Bytes
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
[project]
name = "afm-langchain"
version = "0.3.0"
description = "AFM LangChain execution backend"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11",
]
license = "Apache-2.0"
requires-python = ">=3.11"
urls = { Repository = "https://github.com/wso2/reference-implementations-afm" }
dependencies = [
"afm-core>=0.3.0,<0.4.0",
"langchain>=1.2.8",
"langchain-openai>=1.1.7",
"langchain-anthropic>=1.3.1",
"mcp>=1.26.0",
"langchain-mcp-adapters>=0.2.1",
]
[project.entry-points."afm.runner"]
langchain = "afm_langchain.backend:LangChainRunner"
[build-system]
requires = ["uv_build>=0.9.28,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "afm_langchain"
[tool.uv.sources]
afm-core = { workspace = true }
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"