ghostbuster-cli 0.2.1__tar.gz → 0.2.2__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.
Files changed (42) hide show
  1. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/CHANGELOG.md +6 -0
  2. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/PKG-INFO +4 -4
  3. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/README.md +3 -3
  4. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/pyproject.toml +1 -1
  5. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/__init__.py +1 -1
  6. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_cli.py +1 -1
  7. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/.github/workflows/ci.yml +0 -0
  8. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/.github/workflows/publish.yml +0 -0
  9. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/.gitignore +0 -0
  10. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/.pre-commit-hooks.yaml +0 -0
  11. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/CONTRIBUTING.md +0 -0
  12. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/LICENSE +0 -0
  13. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/assets/npm_package_icon.png +0 -0
  14. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/assets/readme_header.png +0 -0
  15. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/assets/terminal_icon.png +0 -0
  16. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/__main__.py +0 -0
  17. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/cli/__init__.py +0 -0
  18. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/cli/app.py +0 -0
  19. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/cli/bust.py +0 -0
  20. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/cli/display.py +0 -0
  21. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/cli/scan.py +0 -0
  22. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/config.py +0 -0
  23. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/__init__.py +0 -0
  24. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/dead_imports.py +0 -0
  25. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/models.py +0 -0
  26. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/orphan_files.py +0 -0
  27. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/phantom_env.py +0 -0
  28. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/scanner.py +0 -0
  29. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/scoring.py +0 -0
  30. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/core/zombie_code.py +0 -0
  31. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/fixers/__init__.py +0 -0
  32. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/fixers/env_fixer.py +0 -0
  33. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/fixers/gitignore_fixer.py +0 -0
  34. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/src/ghostbuster/fixers/import_fixer.py +0 -0
  35. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/__init__.py +0 -0
  36. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/conftest.py +0 -0
  37. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_dead_imports.py +0 -0
  38. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_fixers.py +0 -0
  39. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_orphan_files.py +0 -0
  40. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_phantom_env.py +0 -0
  41. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_scoring.py +0 -0
  42. {ghostbuster_cli-0.2.1 → ghostbuster_cli-0.2.2}/tests/test_zombie_code.py +0 -0
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.2] - 2026-08-29
11
+
12
+ ### Fixed
13
+
14
+ - Use absolute GitHub raw asset URLs in `README.md` so headers and icons render properly on PyPI and third-party package viewers.
15
+
10
16
  ## [0.2.1] - 2026-08-29
11
17
 
12
18
  ### Fixed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: ghostbuster-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Find and bust the ghosts haunting your codebase - unused deps, dead code, orphan files, and phantom env vars.
5
5
  Project-URL: Homepage, https://github.com/adewanggar/ghostbuster-cli
6
6
  Project-URL: Documentation, https://github.com/adewanggar/ghostbuster-cli#readme
@@ -38,7 +38,7 @@ Description-Content-Type: text/markdown
38
38
 
39
39
  <div align="center">
40
40
 
41
- <img src="assets/readme_header.png" alt="Ghostbuster Header" width="100%" />
41
+ <img src="https://raw.githubusercontent.com/adewanggar/ghostbuster-cli/main/assets/readme_header.png" alt="Ghostbuster Header" width="100%" />
42
42
 
43
43
  # Ghostbuster
44
44
 
@@ -57,7 +57,7 @@ Unused dependencies, dead functions, orphan files, and phantom environment varia
57
57
 
58
58
  ---
59
59
 
60
- ## <img src="assets/terminal_icon.png" width="24" height="24" valign="middle" /> Quick Start
60
+ ## <img src="https://raw.githubusercontent.com/adewanggar/ghostbuster-cli/main/assets/terminal_icon.png" width="24" height="24" valign="middle" /> Quick Start
61
61
 
62
62
  ```bash
63
63
  # Install
@@ -225,7 +225,7 @@ Ghostbuster uses **pure AST analysis** - no runtime imports, no code execution,
225
225
 
226
226
  ## Roadmap
227
227
 
228
- - <img src="assets/npm_package_icon.png" width="18" height="18" valign="middle" /> Node.js / TypeScript support (scan `package.json`, dead exports)
228
+ - <img src="https://raw.githubusercontent.com/adewanggar/ghostbuster-cli/main/assets/npm_package_icon.png" width="18" height="18" valign="middle" /> Node.js / TypeScript support (scan `package.json`, dead exports)
229
229
  - Pre-commit hook integration
230
230
  - GitHub Actions reporter (comment Ghost Score on PRs)
231
231
  - Config inheritance for monorepos
@@ -1,6 +1,6 @@
1
1
  <div align="center">
2
2
 
3
- <img src="assets/readme_header.png" alt="Ghostbuster Header" width="100%" />
3
+ <img src="https://raw.githubusercontent.com/adewanggar/ghostbuster-cli/main/assets/readme_header.png" alt="Ghostbuster Header" width="100%" />
4
4
 
5
5
  # Ghostbuster
6
6
 
@@ -19,7 +19,7 @@ Unused dependencies, dead functions, orphan files, and phantom environment varia
19
19
 
20
20
  ---
21
21
 
22
- ## <img src="assets/terminal_icon.png" width="24" height="24" valign="middle" /> Quick Start
22
+ ## <img src="https://raw.githubusercontent.com/adewanggar/ghostbuster-cli/main/assets/terminal_icon.png" width="24" height="24" valign="middle" /> Quick Start
23
23
 
24
24
  ```bash
25
25
  # Install
@@ -187,7 +187,7 @@ Ghostbuster uses **pure AST analysis** - no runtime imports, no code execution,
187
187
 
188
188
  ## Roadmap
189
189
 
190
- - <img src="assets/npm_package_icon.png" width="18" height="18" valign="middle" /> Node.js / TypeScript support (scan `package.json`, dead exports)
190
+ - <img src="https://raw.githubusercontent.com/adewanggar/ghostbuster-cli/main/assets/npm_package_icon.png" width="18" height="18" valign="middle" /> Node.js / TypeScript support (scan `package.json`, dead exports)
191
191
  - Pre-commit hook integration
192
192
  - GitHub Actions reporter (comment Ghost Score on PRs)
193
193
  - Config inheritance for monorepos
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "ghostbuster-cli"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Find and bust the ghosts haunting your codebase - unused deps, dead code, orphan files, and phantom env vars."
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,3 +1,3 @@
1
1
  """Ghostbuster — Find and bust the ghosts haunting your codebase."""
2
2
 
3
- __version__ = "0.2.1"
3
+ __version__ = "0.2.2"
@@ -17,7 +17,7 @@ class TestCLI:
17
17
  result = runner.invoke(app, ["--version"])
18
18
  assert result.exit_code == 0
19
19
  assert "ghostbuster" in result.output
20
- assert "0.2.1" in result.output
20
+ assert "0.2.2" in result.output
21
21
 
22
22
  def test_help_flag(self) -> None:
23
23
  """--help should print help text."""
File without changes