-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (67 loc) · 1.92 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
75
76
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deadends-dev"
version = "0.9.0"
description = "Structured failure knowledge for AI agents — dead ends, workarounds, error chains"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "YuJin Hong"}
]
readme = "README.md"
keywords = [
"error", "debugging", "dead-end", "workaround", "ai-agent",
"mcp", "error-handling", "troubleshooting",
"culture", "safety", "medical", "legal",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Debuggers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"jinja2>=3.1.6,<4",
]
[project.urls]
Homepage = "https://deadends.dev"
Repository = "https://github.com/dbwls99706/deadends.dev"
Source = "https://github.com/dbwls99706/deadends.dev"
Issues = "https://github.com/dbwls99706/deadends.dev/issues"
Changelog = "https://github.com/dbwls99706/deadends.dev/blob/main/README.md#changelog"
API = "https://deadends.dev/api/v1/index.json"
[project.optional-dependencies]
dev = [
"pytest>=7.0,<9",
"ruff>=0.4,<1",
"jsonschema>=4.20,<5",
]
mcp = [
"jsonschema>=4.20,<5",
]
pipeline = [
"jsonschema>=4.20,<5",
"requests>=2.31,<3",
"anthropic>=0.25,<2",
]
[project.scripts]
deadends = "generator.lookup:main"
deadends-mcp = "mcp.server:main"
deadends-dev = "mcp.server:main"
[tool.setuptools.packages.find]
include = ["generator*", "mcp*", "data*"]
[tool.setuptools.package-data]
data = ["canons/**/*.json"]
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = ["generator/bulk_generate*.py", "archive/", "api/"]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]