forked from baidu-baige/LoongFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.23 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["loongflow*"]
namespaces = true
[project]
name = "loongflow"
version = "0.0.2"
description = "agent"
authors = [{ name = "loongflow", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache License 2.0" }
dependencies = [
"numpy>=2.2.6",
"openai>=1.102.0",
"pyyaml>=6.0.2",
"aiohttp>=3.12.15",
"redis>=6.4.0",
"uvicorn>=0.35.0",
"httpx[socks]>=0.28.1",
"matplotlib>=3.10.6",
"scipy>=1.16.1",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pyfakefs>=5.10.0",
"litellm>=1.80.10",
"flask>=3.1.2",
"sympy>=1.14.0",
"claude-agent-sdk>=0.1.20",
"psutil>=7.2.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pyfakefs>=5.10.0"
]
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.pytest.ini_options]
pythonpath = ["src", "."]
asyncio_mode = "auto"
addopts = "-s"
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"