-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (67 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
71 lines (67 loc) · 1.68 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
67
68
69
70
71
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "codex-auto-continue"
version = "0.1.0"
description = "Auto-send a follow-up prompt to Codex in tmux after each completed turn."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Thomas Ahle" },
]
dependencies = [
"rich>=13.7",
]
keywords = ["codex", "tmux", "automation", "cli"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/thomasnormal/codex-auto-continue"
Repository = "https://github.com/thomasnormal/codex-auto-continue"
Issues = "https://github.com/thomasnormal/codex-auto-continue/issues"
CI = "https://github.com/thomasnormal/codex-auto-continue/actions/workflows/ci.yml"
[project.scripts]
acw = "auto_continue_watchd:main"
codex-team = "codex_team:main"
[tool.setuptools]
package-dir = {"" = "bin"}
py-modules = [
"auto_continue_watchd",
"auto_continue_logwatch",
"acw_bootstrap",
"acw_codex",
"acw_config",
"acw_daemon",
"acw_ids",
"acw_control",
"acw_commands",
"acw_housekeeping",
"acw_loop",
"acw_probe",
"acw_repo",
"acw_observe",
"acw_repair",
"acw_rpc",
"acw_runtime",
"acw_runtime_store",
"acw_session",
"acw_state",
"acw_status",
"acw_tmux",
"acw_targets",
"acw_ui",
"codex_team",
"codex_team_protocol",
"codex_team_runtime",
"codex_team_state",
]