-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.02 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
[project]
name = "pyharness"
version = "0.1.0"
description = "Source Code Book Generation Harness — Python orchestration engine"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0,<3.0",
"pyyaml>=6.0",
"networkx>=3.0",
"pathspec>=0.11",
]
[project.optional-dependencies.static-analysis]
tree-sitter = [
"tree-sitter>=0.23",
"tree-sitter-python>=0.23",
"tree-sitter-javascript>=0.23",
"tree-sitter-typescript>=0.23",
"tree-sitter-go>=0.23",
"tree-sitter-rust>=0.23",
"tree-sitter-java>=0.23",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
pyharness = "pyharness.__main__:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
norecursedirs = ["tests/e2e/fixture-repo"]
markers = [
"slow: real Claude CLI tests (deselect with '-m \"not slow\"')",
"live: live e2e tests requiring real Claude CLI (run with '-m live')",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.backends._legacy:_Backend"