-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openflywheel"
version = "0.8.0"
description = "A governed self-improving agent harness"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27,<1",
"langfuse>=4.7,<5",
"pydantic>=2.10,<3",
]
[project.scripts]
openflywheel-mcp = "ofw.mcp:main"
[project.optional-dependencies]
dev = [
"mypy>=1.10,<2",
"pytest>=9.0.3,<10",
"pytest-cov>=5,<6",
"ruff>=0.5,<1",
]
plugin = ["mcp>=1.13,<2"]
[tool.hatch.build.targets.wheel]
packages = ["src/ofw"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
markers = ["live_langfuse: requires Langfuse credentials and a trace ID"]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
files = ["src", "tests"]
python_version = "3.11"
strict = true
warn_unused_configs = true
warn_return_any = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_any_expr = true
disallow_any_unimported = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unreachable = true