-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.07 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
[project]
name = "contreact"
version = "0.1.0"
description = "Continuous ReAct agent with modular tools"
authors = [
{name = "Stefan Szeider", email = "stefan@szeider.net"}
]
requires-python = ">=3.11"
dependencies = [
"langgraph>=1.0.5",
"langchain-core>=1.2.5",
"langchain-openai>=1.1.6",
"python-dotenv>=1.2.1",
"langgraph-checkpoint-sqlite>=3.0.1",
"pillow>=12.0.0",
"numpy>=2.4.0",
"scikit-learn>=1.8.0",
"rich>=14.2.0",
"click>=8.3.1",
"tavily-python>=0.7.17",
]
[project.scripts]
contreact = "contreact.main:main"
query = "contreact.query:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
test = [
"pytest>=9.0.2",
"pillow>=12.0.0",
"numpy>=2.4.0",
"scikit-learn>=1.8.0",
]
local-embeddings = [
"sentence-transformers>=5.2.0",
"torch>=2.0.0",
]
[tool.uv]
dev-dependencies = [
"pytest>=9.0.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v"