-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (85 loc) · 2.37 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (85 loc) · 2.37 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "thinharness"
version = "0.6.0"
description = "Minimal filesystem agent harness with provider-backed Responses-like models."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "thinharness maintainers"}]
keywords = ["agents", "responses-api", "filesystem", "skills", "harness"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
"pydantic>=2.13.4",
]
[project.urls]
Homepage = "https://github.com/ryanbbrown/thinharness"
Repository = "https://github.com/ryanbbrown/thinharness"
Issues = "https://github.com/ryanbbrown/thinharness/issues"
Changelog = "https://github.com/ryanbbrown/thinharness/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = ["pyright>=1.1.409", "pytest>=8", "pytest-asyncio>=0.25", "pytest-cov>=7", "ruff>=0.14"]
tracing = [
"opentelemetry-api>=1.24",
"opentelemetry-sdk>=1.24",
"opentelemetry-exporter-otlp-proto-http>=1.24",
]
mcp = [
"fastmcp-slim[client]==3.4.4",
"mcp>=1.24.0,<2.0",
]
[tool.setuptools.package-data]
thinharness = ["py.typed"]
[tool.setuptools.packages.find]
include = ["thinharness*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
addopts = [
"--cov=thinharness",
"--cov-report=term-missing",
]
[tool.coverage.run]
branch = true
source = ["thinharness"]
[tool.coverage.report]
show_missing = true
exclude_also = [
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
]
[tool.ruff]
line-length = 160
extend-exclude = ["vendor", "experiments", ".context"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.pyright]
include = ["thinharness"]
exclude = ["vendor", "experiments", ".context", "tests"]
pythonVersion = "3.11"
[dependency-groups]
dev = [
"fastmcp-slim[server]==3.4.4",
"pyright>=1.1.409",
"pytest>=8",
"pytest-asyncio>=0.25",
"pytest-cov>=7",
"ruff>=0.14",
]
docs = [
"markdown>=3.6",
]