-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (79 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (79 loc) · 1.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "codexdeck"
dynamic = ["version"]
description = "Read-only operations console for Codex sessions, tools, terminals, and network health"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["codex", "network", "monitoring", "terminal", "tui"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Monitoring",
]
dependencies = [
"rich==15.0.0",
"textual==8.2.8",
"tomli==2.4.1; python_version < '3.11'",
]
[project.scripts]
codexdeck = "cli:run"
[tool.setuptools]
py-modules = [
"app",
"cli",
"config",
"diagnostics",
"engine",
"engine_collectors",
"engine_refresh",
"models",
"preferences",
"snapshot_publisher",
"state_machine",
"state_axes",
"state_summaries",
"temporal",
"utils",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["codex*", "network*", "presentation*"]
[tool.setuptools.package-data]
"presentation.tui" = ["*.tcss"]
[tool.setuptools.dynamic]
version = {attr = "config.VERSION"}
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
[tool.mypy]
python_version = "3.10"
files = [
"src/models.py",
"src/codex/events.py",
"src/codex/terminal.py",
"src/codex/paths.py",
"src/codex/processes.py",
"src/network/classifier.py",
"src/state_machine.py",
"src/state_axes.py",
"src/state_summaries.py",
]
mypy_path = "src"
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = ["tomllib", "tomli"]
ignore_missing_imports = true