forked from LeapLabTHU/cooragent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (69 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
74 lines (69 loc) · 1.58 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
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cooragent"
version = "0.1.0"
authors = [
{ name="wangzheng", email="georgewang2011@163.com" },
]
description = "Cooragent project"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"langchain-community>=0.3.19",
"langchain-experimental>=0.3.4",
"langchain-openai>=0.3.8",
"langgraph>=0.3.5",
"readabilipy>=0.3.0",
"python-dotenv>=1.0.1",
"socksio>=1.0.0",
"markdownify>=1.1.0",
"browser-use>=0.1.0",
"fastapi>=0.110.0",
"uvicorn>=0.27.1",
"sse-starlette>=1.6.5",
"pandas>=2.2.3",
"numpy>=2.2.3",
"yfinance>=0.2.54",
"langchain-deepseek>=0.1.2",
"matplotlib>=3.10.1",
"python-docx>=1.1.2",
"seaborn>=0.13.2",
"tabulate>=0.9.0",
"mcp>=1.6.0",
"beeai-framework>=0.1.11",
"openpyxl>=3.1.5",
"dashscope>=1.22.2",
"termcolor>=3.0.0",
"langchain-mcp-adapters>=0.0.3",
"rich>=14.0.0",
]
[project.optional-dependencies]
dev = [
"black>=24.2.0",
]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=src --cov-report=term-missing"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::UserWarning",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.black]
line-length = 88
target-version = ["py312"]
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/build/
'''