-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (109 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
119 lines (109 loc) · 2.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "dory"
version = "0.1.0"
description = "Local-first memory daemon"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "Dory contributors" },
]
dependencies = [
"fastapi>=0.116,<1",
"google-genai>=1.42,<2",
"httpx>=0.28,<1",
"pydantic>=2.11,<3",
"pydantic-settings>=2.10,<3",
"pyyaml>=6.0,<7",
"textual>=0.78,<1",
"tiktoken>=0.9,<1",
"typer>=0.16,<1",
"uvicorn>=0.35,<1",
"watchdog>=4,<7",
]
[project.scripts]
dory = "dory_cli.main:run"
dory-http = "dory_http.app:main"
dory-mcp = "dory_mcp.server:main"
[dependency-groups]
dev = [
"pytest-asyncio>=0.25,<1",
"pytest>=8.4,<9",
"ruff>=0.8,<1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"src/dory_core",
"src/dory_cli",
"src/dory_mcp",
"src/dory_http",
]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/docs",
"/eval/README.md",
"/eval/INDEX.md",
"/eval/categories.md",
"/eval/validate.py",
"/eval/public",
"/examples",
"/packages/openclaw-dory",
"/plugins/hermes-dory",
"/references",
"/scripts/agent-policy",
"/scripts/claude-code",
"/scripts/codex",
"/scripts/ops",
"/skills",
"/Dockerfile",
"/docker-compose.yml",
"/.env.example",
"/AGENTS.md",
"/CLAUDE.md",
"/CONTRIBUTING.md",
"/CODE_OF_CONDUCT.md",
"/SECURITY.md",
"/README.md",
"/LICENSE",
"/pyproject.toml",
"/uv.lock",
]
exclude = [
"/eval/runs",
"/packages/openclaw-dory/node_modules",
"/scripts/release",
"*.env",
".env",
".env.*",
"__pycache__",
]
[tool.hatch.build.targets.sdist.force-include]
"packages/openclaw-dory/dist/index.js" = "packages/openclaw-dory/dist/index.js"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 120
extend-exclude = [
"eval/runs",
]
[tool.ruff.lint]
select = [
"B",
"C4",
"E",
"F",
]
ignore = [
"B008",
"E501",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"