-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (53 loc) · 1.59 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
[project]
name = "iec-cli"
dynamic = ["version"]
description = "Intent Engineering practice validation CLI — deterministic + AI-assisted checks for agentic software engineering repos"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache-2.0" }
authors = [
{ name = "Intent Engineering for Coding Agents Contributors" }
]
keywords = ["iec", "ai", "agent", "spec-driven", "cli"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"typer>=0.15",
"pyyaml>=6",
]
[dependency-groups]
dev = [
"pytest>=8",
"pytest-cov>=7.1.0",
"ruff>=0.11",
]
[project.scripts]
iec = "iec_cli.main:app"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0.0.dev0"
[tool.ruff]
target-version = "py312"
exclude = ["examples/"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"ac: marks a test as proving a specific acceptance criterion",
"unit: marks a pure-function unit test (no CLI invocation)",
"integration: marks an integration test (CLI invocation via CliRunner)",
"sanity: marks environment or toolchain readiness tests",
"baseline: marks coverage threshold or structural regression tests",
]