-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.29 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qae-langgraph-example"
version = "0.1.0"
description = "QAE safety certification integrated into LangGraph agent workflows"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Northbeam Solutions LLC", email = "info@northbeam.solutions" },
]
license = { text = "BSL-1.1" }
dependencies = [
"qae-safety>=0.1.1",
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
]
[project.urls]
Homepage = "https://qaesubstrate.com"
Documentation = "https://qaesubstrate.com/docs"
Repository = "https://github.com/tb8412/qae-langgraph-example"
"Bug Tracker" = "https://github.com/tb8412/qae-langgraph-example/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[tool.black]
line-length = 100
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.ruff]
line-length = 100
target-version = "py39"
select = ["E", "F", "W", "I", "N", "UP"]
ignore = ["E501"]