-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.65 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
[project]
name = "agnt-diff"
version = "0.1.0"
description = "Local-first stats, diagnostics, and before/after comparison for coding-agent sessions"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "agnt-diff contributors"},
]
keywords = ["claude-code", "codex", "coding-agent", "analytics", "stats", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
]
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27.0",
"pyyaml>=6.0",
]
[project.scripts]
agnt-diff = "agnt.cli:main"
agnt = "agnt.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agnt"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
# TID252: ban relative imports (use agnt.* only).
select = ["E9", "F63", "F7", "F82", "TID252"]
[tool.mypy]
# Ban relative imports: use Ruff TID252 (mypy has no first-class equivalent).
python_version = "3.12"
strict = false
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = false
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = false
exclude = ["^tests/"]
[dependency-groups]
dev = [
"mypy>=1.20.2",
"ruff>=0.15.12",
"types-pyyaml>=6.0.12.20260408",
]