procclean 1.2.0__tar.gz → 1.2.1__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 (23) hide show
  1. {procclean-1.2.0 → procclean-1.2.1}/PKG-INFO +13 -6
  2. {procclean-1.2.0 → procclean-1.2.1}/README.md +12 -5
  3. {procclean-1.2.0 → procclean-1.2.1}/pyproject.toml +1 -1
  4. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/__init__.py +0 -0
  5. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/__main__.py +0 -0
  6. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/cli/__init__.py +0 -0
  7. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/cli/commands.py +0 -0
  8. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/cli/docs.py +0 -0
  9. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/cli/parser.py +0 -0
  10. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/__init__.py +0 -0
  11. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/actions.py +0 -0
  12. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/constants.py +0 -0
  13. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/filters.py +0 -0
  14. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/memory.py +0 -0
  15. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/models.py +0 -0
  16. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/core/process.py +0 -0
  17. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/formatters/__init__.py +0 -0
  18. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/formatters/columns.py +0 -0
  19. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/formatters/output.py +0 -0
  20. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/tui/__init__.py +0 -0
  21. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/tui/app.py +0 -0
  22. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/tui/app.tcss +0 -0
  23. {procclean-1.2.0 → procclean-1.2.1}/src/procclean/tui/screens.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: procclean
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Interactive TUI for exploring and cleaning up processes - find orphans, memory hogs, and kill them
5
5
  Keywords: cleanup,kill,memory,orphan,process,terminal,tui
6
6
  Author: Kaj Kowalski
@@ -26,7 +26,7 @@ Project-URL: Repository, https://github.com/kjanat/procclean
26
26
  Description-Content-Type: text/markdown
27
27
 
28
28
  <p align="center">
29
- <img src="logo/procclean-transparent.svg" alt="procclean" width="500">
29
+ <img src="https://raw.github.com/kjanat/procclean/master/logo/procclean-transparent.svg" alt="procclean" width="500">
30
30
  </p>
31
31
 
32
32
  <p align="center">
@@ -34,8 +34,9 @@ Description-Content-Type: text/markdown
34
34
  </p>
35
35
 
36
36
  <p align="center">
37
+ <a href="https://pypi.org/project/procclean/"><img src="https://img.shields.io/pypi/v/procclean" alt="PyPI"></a>
37
38
  <a href="https://github.com/kjanat/procclean/blob/master/LICENSE"><img src="https://img.shields.io/github/license/kjanat/procclean" alt="License"></a>
38
- <a href="https://github.com/kjanat/procclean/releases"><img src="https://img.shields.io/github/v/release/kjanat/procclean" alt="Release"></a>
39
+ <a href="https://procclean.kjanat.com"><img src="https://img.shields.io/badge/docs-mkdocs-blue" alt="Docs"></a>
39
40
  <img src="https://img.shields.io/badge/python-3.14%2B-blue" alt="Python 3.14+">
40
41
  <img src="https://img.shields.io/badge/platform-linux-lightgrey" alt="Linux">
41
42
  </p>
@@ -54,13 +55,19 @@ Description-Content-Type: text/markdown
54
55
  ## Installation
55
56
 
56
57
  ```bash
57
- uv tool install git+https://github.com/kjanat/procclean
58
+ pip install procclean
58
59
  ```
59
60
 
60
- Or run directly:
61
+ Or with [uv](https://docs.astral.sh/uv/):
61
62
 
62
63
  ```bash
63
- uvx git+https://github.com/kjanat/procclean
64
+ uv tool install procclean
65
+ ```
66
+
67
+ Run without installing:
68
+
69
+ ```bash
70
+ uvx procclean
64
71
  ```
65
72
 
66
73
  ## Usage
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="logo/procclean-transparent.svg" alt="procclean" width="500">
2
+ <img src="https://raw.github.com/kjanat/procclean/master/logo/procclean-transparent.svg" alt="procclean" width="500">
3
3
  </p>
4
4
 
5
5
  <p align="center">
@@ -7,8 +7,9 @@
7
7
  </p>
8
8
 
9
9
  <p align="center">
10
+ <a href="https://pypi.org/project/procclean/"><img src="https://img.shields.io/pypi/v/procclean" alt="PyPI"></a>
10
11
  <a href="https://github.com/kjanat/procclean/blob/master/LICENSE"><img src="https://img.shields.io/github/license/kjanat/procclean" alt="License"></a>
11
- <a href="https://github.com/kjanat/procclean/releases"><img src="https://img.shields.io/github/v/release/kjanat/procclean" alt="Release"></a>
12
+ <a href="https://procclean.kjanat.com"><img src="https://img.shields.io/badge/docs-mkdocs-blue" alt="Docs"></a>
12
13
  <img src="https://img.shields.io/badge/python-3.14%2B-blue" alt="Python 3.14+">
13
14
  <img src="https://img.shields.io/badge/platform-linux-lightgrey" alt="Linux">
14
15
  </p>
@@ -27,13 +28,19 @@
27
28
  ## Installation
28
29
 
29
30
  ```bash
30
- uv tool install git+https://github.com/kjanat/procclean
31
+ pip install procclean
31
32
  ```
32
33
 
33
- Or run directly:
34
+ Or with [uv](https://docs.astral.sh/uv/):
34
35
 
35
36
  ```bash
36
- uvx git+https://github.com/kjanat/procclean
37
+ uv tool install procclean
38
+ ```
39
+
40
+ Run without installing:
41
+
42
+ ```bash
43
+ uvx procclean
37
44
  ```
38
45
 
39
46
  ## Usage
@@ -3,7 +3,7 @@
3
3
 
4
4
  [project]
5
5
  name = "procclean"
6
- version = "1.2.0"
6
+ version = "1.2.1"
7
7
  description = "Interactive TUI for exploring and cleaning up processes - find orphans, memory hogs, and kill them"
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.14"