-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 967 Bytes
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
[project]
name = "astraflow"
version = "0.1.0"
description = "Python-first agent workflow orchestrator."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.3.0",
"httpx>=0.27.0",
"redis>=5.0.0",
"pymilvus>=2.4.0",
"langgraph>=0.2.0",
"langchain-core>=0.2.0",
"langsmith>=0.1.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
sandbox = [
"wasmtime>=18.0.0",
]
deploy = [
"paramiko>=3.4.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.6.0",
]
[project.scripts]
astraflow = "astra_flow.main:run"
[build-system]
requires = ["setuptools>=70.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"