maketool 0.8.12__tar.gz → 0.8.15__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maketool
3
- Version: 0.8.12
3
+ Version: 0.8.15
4
4
  Summary: Python Automation tool for building PySide6 UI and PyInstaller EXE.
5
5
  Author-email: Alan Lilly <panofish@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -124,6 +124,19 @@ def print_group(title: str, rows: list[tuple[str, list[str]]]) -> None:
124
124
  print()
125
125
 
126
126
 
127
+ def print_group(title: str, rows: list[tuple[str, list[str]]]) -> None:
128
+ print(title)
129
+ print("-" * len(title))
130
+ for rel, refs in rows:
131
+ # no markers; print plain filename/path
132
+ if refs:
133
+ preview = ", ".join(refs[:3]) + (" ..." if len(refs) > 3 else "")
134
+ print(f"{rel} <-- {preview}")
135
+ else:
136
+ print(rel)
137
+ print()
138
+
139
+
127
140
  # ----------------------------
128
141
  # Missing-import report (merged from report.py)
129
142
  # ----------------------------
@@ -346,7 +359,7 @@ def main() -> int:
346
359
  if not refs:
347
360
  unused_rows.append((c.rel, refs))
348
361
 
349
- print_group("2UNUSED files (no filename/path tokens found)", unused_rows)
362
+ print_group("UNUSED files (no filename/path tokens found)", unused_rows)
350
363
 
351
364
  # Second report: missing imports (based on entry .py)
352
365
  if entry.suffix.lower() == ".py":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maketool
3
- Version: 0.8.12
3
+ Version: 0.8.15
4
4
  Summary: Python Automation tool for building PySide6 UI and PyInstaller EXE.
5
5
  Author-email: Alan Lilly <panofish@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "maketool"
3
- version = "0.8.12"
3
+ version = "0.8.15"
4
4
  description = "Python Automation tool for building PySide6 UI and PyInstaller EXE."
5
5
  authors = [{ name = "Alan Lilly", email = "panofish@gmail.com" }]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes