-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.78 KB
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
45
46
47
48
[tool.poetry]
name = "in2lambda-agent"
version = "0.1.0"
description = "Turns a PDF, docx, tex or md file into a validated Lambda Feedback set"
authors = []
license = "MIT"
readme = "README.md"
packages = [{ include = "in2lambda_agent" }]
[tool.poetry.dependencies]
python = "^3.10"
# From git until a release carries the API the agent needs, and at a commit
# rather than the branch, so that what a target's comparison reports changes
# when this line does and not when someone pushes to dev. The convert extra
# pulls in panflute, which in2lambda.main.runner needs to read a document.
in2lambda = { git = "https://github.com/lambda-feedback/in2lambda.git", rev = "0f899a64d61f77556658fb0c33622d7554a8cfcb", extras = [
"convert",
] }
python-dotenv = "^1.0"
# One per model backend, all of them imported only by in2lambda_agent.model.
claude-agent-sdk = "^0.2.157"
anthropic = "^1.7.0"
# Two callers: Mathpix, and the OpenRouter backend. Both only need a Client and
# the MockTransport the tests fake requests with, which 0.27 and 0.28 both have,
# so the range spans what either side of this merge asked for.
httpx = ">=0.27,<0.29"
# The `ui` extra, imported only by in2lambda_agent.ui.server. Every other
# command runs without them. The range has no upper bound: claude-agent-sdk
# already brings both in, and a cap here would downgrade them for every install
# whether or not it asks for the extra.
starlette = { version = ">=0.37", optional = true }
uvicorn = { version = ">=0.29", optional = true }
[tool.poetry.extras]
ui = ["starlette", "uvicorn"]
[tool.poetry.scripts]
in2lambda-agent = "in2lambda_agent.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.1.1,<10.0.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"