-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.42 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
[project]
name = "langgraphics"
version = "0.1.0-beta.3"
description = "Visualize live LangGraph execution and see how your agent thinks as it runs."
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Artyom Vancyan" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"langchain-core>=1.0.0",
"langgraph>=1.0.0",
"websockets>=14.0",
]
[dependency-groups]
dev = [
"deepagents>=0.3.3; python_version >= '3.11'",
"langchain>=1.2.7",
"langgraph>=1.0.7",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"requests>=2.20.0",
"ruff>=0.15.0",
"tox-uv>=1.29.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests/lib"]
pythonpath = ["."]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["langgraphics/**/*"]
ignore-vcs = true
[tool.hatch.build.targets.wheel]
packages = ["langgraphics"]