-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (22 loc) · 800 Bytes
/
Copy pathpyproject.toml
File metadata and controls
24 lines (22 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
name = "code-ai-agent-bootstrap"
version = "0.3.0"
description = "Multi-CLI V2 bootstrapper for Codex CLI, Claude Code, and OpenCode AI workflows for large Java/Spring projects."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Janeuler" }
]
[project.scripts]
ai-bootstrap = "scripts.code_bootstrap:main"
project-probe = "scripts.project_probe:main"
repo-inventory = "scripts.repo_inventory:main"
module-detector = "scripts.module_detector:main"
spring-analyzer = "scripts.spring_analyzer:main"
context-pack-builder = "scripts.context_pack_builder:main"
workflow-synthesizer = "scripts.workflow_synthesizer:main"
workflow-verify = "scripts.verify_generated_workflow:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]