maketool 0.7.7__tar.gz → 0.7.9__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.7.7
3
+ Version: 0.7.9
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
@@ -316,15 +316,18 @@ def compute_missing_used_imports(
316
316
 
317
317
 
318
318
  def print_missing_imports(entry: Path) -> None:
319
- print("MISSING (used but not installed):")
319
+
320
+ title = "MISSING (used but not installed):"
321
+ print(title)
322
+ print("-" * len(title))
320
323
 
321
324
  if packages_distributions is None:
322
- print(" (skipped: Python 3.8+ required for packages_distributions())")
325
+ print("(skipped: Python 3.8+ required for packages_distributions())")
323
326
  print()
324
327
  return
325
328
 
326
329
  if not entry.exists() or entry.suffix.lower() != ".py":
327
- print(" (skipped: entry is not a .py file)")
330
+ print("(skipped: entry is not a .py file)")
328
331
  print()
329
332
  return
330
333
 
@@ -344,9 +347,9 @@ def print_missing_imports(entry: Path) -> None:
344
347
 
345
348
  if missing:
346
349
  for m in sorted(missing):
347
- print(f" {m}")
350
+ print(f"{m}")
348
351
  else:
349
- print(" (none)")
352
+ print("(none)")
350
353
  print()
351
354
 
352
355
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maketool
3
- Version: 0.7.7
3
+ Version: 0.7.9
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.7.7"
3
+ version = "0.7.9"
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
File without changes