-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.54 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 = "agentlie"
version = "0.10.0"
description = "Claude Code Agent honesty verifier — one command surfaces fixes the Coding Agent claimed but never made."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "supermario_leo", email = "leo.stack@outlook.com" }]
keywords = ["claude-code", "coding-agent", "agent", "agent-evaluation", "ai-honesty"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"click>=8.1,<9",
"rich>=13.7,<15",
"pydantic>=2.7,<3",
"tree-sitter>=0.23,<1",
"tree-sitter-language-pack>=0.3,<1",
]
[project.optional-dependencies]
llm = ["anthropic>=0.40,<1"]
dev = [
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.6",
]
[project.scripts]
agentlie = "agentlie.cli:main"
[project.urls]
Homepage = "https://github.com/supermario-leo/agentlie"
Repository = "https://github.com/supermario-leo/agentlie"
Issues = "https://github.com/supermario-leo/agentlie/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/agentlie"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.ruff]
line-length = 100
target-version = "py310"