forked from wso2/reference-implementations-afm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 984 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
40
41
42
43
44
[project]
name = "langchain-interpreter"
version = "0.1.0"
description = "AFM (Agent-Flavored Markdown) interpreter using LangChain"
readme = "README.md"
authors = [
{ name = "Radith Samarakoon", email = "jjeli1234@gmail.com" }
]
requires-python = ">=3.11"
dependencies = [
"langchain>=1.2.8",
"pyyaml>=6.0",
"pydantic>=2.0",
"langchain-openai>=1.1.7",
"langchain-anthropic>=1.3.1",
"jsonschema>=4.26.0",
"fastapi>=0.128.1",
"httpx>=0.28.1",
"uvicorn>=0.40.0",
"mcp>=1.26.0",
"langchain-mcp-adapters>=0.2.1",
"click>=8.0.0",
]
[project.scripts]
afm = "langchain_interpreter.cli:main"
[build-system]
requires = ["uv_build>=0.9.28,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[dependency-groups]
dev = [
"ruff>=0.15.0",
"pytest>=8.0",
"pytest-cov>=7.0.0",
"pytest-asyncio>=1.3.0",
]