-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 1.32 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
[project]
name = "agent-issues"
version = "0.1.0"
description = "File-based issue tracking for AI coding agents"
requires-python = ">=3.13"
dependencies = [
"pyjson5>=1.6",
]
[dependency-groups]
dev = [
"pytest>=8.0",
]
[project.scripts]
agent-issues = "agent_issues.cli.agent_issues:main"
agent-issues-init = "agent_issues.cli.init_repo:main"
agent-preflight = "agent_issues.cli.agent_preflight:main"
agent-pretool-hook = "agent_issues.cli.agent_pretool_hook:main"
agent-submit = "agent_issues.cli.agent_submit:main"
branch-summary = "agent_issues.cli.branch_summary:main"
coding-agent-here = "agent_issues.cli.coding_agent_here:main"
issue-abandon = "agent_issues.cli.issue_abandon:main"
issue-autoclaim = "agent_issues.cli.issue_autoclaim:main"
issue-claim = "agent_issues.cli.issue_claim:main"
issue-fmt = "agent_issues.cli.issue_fmt:main"
issue-lint = "agent_issues.cli.issue_lint:main"
issue-query = "agent_issues.cli.issue_query:main"
issue-watch-pr = "agent_issues.cli.issue_watch_pr:main"
worktree-new = "agent_issues.cli.worktree_new:main"
worktree-rm = "agent_issues.cli.worktree_rm:main"
worktree-unrm = "agent_issues.cli.worktree_unrm:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agent_issues"]
[tool.pytest.ini_options]
testpaths = ["tests"]