-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (94 loc) · 2.47 KB
/
pyproject.toml
File metadata and controls
104 lines (94 loc) · 2.47 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
[project]
name = "graphrefly"
version = "0.20.0"
description = "Reactive harness layer for agent workflows. Describe automations in plain language, trace every decision, enforce policies, persist checkpoints. Zero dependencies."
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [{ name = "David Chen" }]
keywords = [
"reactive",
"graph",
"automation",
"workflow",
"llm",
"ai-agents",
"harness-engineering",
"agent-harness",
"causal-trace",
"orchestration",
"state-management",
"signals",
"streaming",
"observable",
"causal-tracing",
"human-in-the-loop",
"natural-language",
"durable-workflow",
"asyncio",
"zero-dependency",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Framework :: AsyncIO",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://py.graphrefly.dev"
Repository = "https://github.com/graphrefly/graphrefly-py"
Documentation = "https://py.graphrefly.dev"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/graphrefly"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-benchmark>=5.0",
"python-semantic-release>=10.5.3,<11",
"ruff>=0.9",
"mypy>=1.14",
"croniter>=2.0",
"django>=4.2",
"fastapi>=0.100",
"httpx>=0.24",
"pillow>=12.2.0",
"trio>=0.33.0",
]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
build_command = "uv build"
commit_message = "chore(release): {version} [skip ci]\n\nAutomatically generated by python-semantic-release"
# TODO: Remove this once we have a proper release process.
allow_zero_version = true
[tool.ruff]
line-length = 100
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "TC"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["tests"]
asyncio_mode = "auto"
addopts = "-m 'not benchmark'"
markers = [
"benchmark: micro-benchmarks (run: pytest -m benchmark tests/bench_core.py --benchmark-only)",
]
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true