-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (58 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "std_agent_mk2"
version = "0.1.0"
description = "A python module"
readme = "README.md"
authors = [
{ name = "Nathan Nichols", email = "communications@resultsmotivated.com" },
]
[project.scripts]
std_agent_mk2 = "std_agent_mk2.cli:cli"
[tool.poetry]
version = "2.1.1"
[tool.poetry.dependencies]
python = ">=3.13,<3.14"
loguru = "^0.7.3"
argh = "^0.31.3"
fastapi = "^0.123.5"
langchain = "^1.1.0"
uvicorn = "^0.38.0"
pydantic-settings = "^2.12.0"
langchain-openai = "^1.1.0"
mcp = {extras = ["all"], version = "^1.23.1"}
json5 = "^0.12.1"
openinference-instrumentation-langchain = "^0.1.56"
arize-phoenix = "^12.25.1"
opentelemetry-sdk = "^1.39.1"
opentelemetry-exporter-otlp = "^1.39.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8"
black = "^24.4.2"
basedpyright = "^1.31.5"
ruff = "^0.13.2"
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore:.*unclosed.*:ResourceWarning",
]
[tool.pyright]
typeCheckingMode = "off"
reportMissingParameterType = "none"
reportMissingTypeArgument = "none"
reportUnknownParameterType = "none"
reportUnknownMemberType = "none"
reportUnknownVariableType = "none"
reportUntypedFunctionDecorator = "none"
[tool.ruff]
select = [
"F401" # Unused-import detection
]
fix = true
src = ["src", "tests"] # your code directories