killpy 0.18.0__tar.gz → 0.19.0__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.
- {killpy-0.18.0 → killpy-0.19.0}/PKG-INFO +21 -4
- {killpy-0.18.0 → killpy-0.19.0}/README.md +16 -3
- {killpy-0.18.0 → killpy-0.19.0}/killpy.egg-info/PKG-INFO +21 -4
- {killpy-0.18.0 → killpy-0.19.0}/pyproject.toml +9 -2
- {killpy-0.18.0 → killpy-0.19.0}/killpy/__init__.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/__main__.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/cleaner.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/cleaners/__init__.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/cli.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/commands/__init__.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/commands/clean.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/commands/delete.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/commands/list.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/commands/stats.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/__init__.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/artifacts.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/base.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/cache.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/conda.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/hatch.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/pipenv.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/pipx.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/poetry.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/pyenv.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/tox.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/uv.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/detectors/venv.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/files/__init__.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/models.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy/scanner.py +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy.egg-info/SOURCES.txt +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy.egg-info/dependency_links.txt +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy.egg-info/entry_points.txt +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy.egg-info/requires.txt +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/killpy.egg-info/top_level.txt +0 -0
- {killpy-0.18.0 → killpy-0.19.0}/setup.cfg +0 -0
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: killpy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
4
4
|
Summary: List all .venv directories and Conda environments 🐍 on your system and check how much space they are using. You can then choose which ones to delete in order to free up space 🧹.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Tlaloc-Es/killpy
|
|
6
|
+
Project-URL: Documentation, https://tlaloc-es.github.io/killpy/
|
|
7
|
+
Project-URL: Repository, https://github.com/Tlaloc-Es/killpy
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/Tlaloc-Es/killpy/issues
|
|
5
9
|
Classifier: Environment :: Console
|
|
6
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
7
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -20,6 +24,10 @@ Requires-Dist: textual>=1.0.0
|
|
|
20
24
|
|
|
21
25
|
### Reclaim disk space by finding and deleting Python environments you no longer use
|
|
22
26
|
|
|
27
|
+
Python environment cleaner for virtualenv, Conda, Poetry, pipx, pyenv, tox, Pipenv, Hatch, uv, caches, and build artifacts.
|
|
28
|
+
|
|
29
|
+
[Documentation](https://tlaloc-es.github.io/killpy/)
|
|
30
|
+
|
|
23
31
|
[](https://pypi.org/project/killpy/)
|
|
24
32
|
[](https://pypi.org/project/killpy/)
|
|
25
33
|
[](https://pepy.tech/project/killpy)
|
|
@@ -46,15 +54,22 @@ A typical developer machine accumulates **10–40 GB** of Python environments ov
|
|
|
46
54
|
|
|
47
55
|
`killpy` scans your filesystem, shows you everything with its size, and lets you delete it — either from a slick interactive terminal UI or via a single headless command.
|
|
48
56
|
|
|
57
|
+
That makes it useful if you are trying to:
|
|
58
|
+
|
|
59
|
+
- find old Python virtual environments
|
|
60
|
+
- delete unused Conda environments
|
|
61
|
+
- inspect Poetry environment disk usage
|
|
62
|
+
- clean up `pipx` package environments
|
|
63
|
+
- remove Python caches and build artifacts
|
|
64
|
+
- free disk space consumed by Python development tools
|
|
65
|
+
|
|
49
66
|
```bash
|
|
50
67
|
pipx run killpy --path ~
|
|
51
68
|
# or
|
|
52
69
|
uvx killpy --path ~
|
|
53
70
|
```
|
|
54
71
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## What killpy detects
|
|
72
|
+
### What killpy detects
|
|
58
73
|
|
|
59
74
|
`killpy` supports **11 environment types** across every major Python tool:
|
|
60
75
|
|
|
@@ -118,6 +133,8 @@ killpy --path ~ --exclude "backups,archive,work"
|
|
|
118
133
|
killpy --path ~/projects --delete-all --yes
|
|
119
134
|
```
|
|
120
135
|
|
|
136
|
+
More documentation: [https://tlaloc-es.github.io/killpy/](https://tlaloc-es.github.io/killpy/)
|
|
137
|
+
|
|
121
138
|
______________________________________________________________________
|
|
122
139
|
|
|
123
140
|
## Interactive TUI
|
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
### Reclaim disk space by finding and deleting Python environments you no longer use
|
|
6
6
|
|
|
7
|
+
Python environment cleaner for virtualenv, Conda, Poetry, pipx, pyenv, tox, Pipenv, Hatch, uv, caches, and build artifacts.
|
|
8
|
+
|
|
9
|
+
[Documentation](https://tlaloc-es.github.io/killpy/)
|
|
10
|
+
|
|
7
11
|
[](https://pypi.org/project/killpy/)
|
|
8
12
|
[](https://pypi.org/project/killpy/)
|
|
9
13
|
[](https://pepy.tech/project/killpy)
|
|
@@ -30,15 +34,22 @@ A typical developer machine accumulates **10–40 GB** of Python environments ov
|
|
|
30
34
|
|
|
31
35
|
`killpy` scans your filesystem, shows you everything with its size, and lets you delete it — either from a slick interactive terminal UI or via a single headless command.
|
|
32
36
|
|
|
37
|
+
That makes it useful if you are trying to:
|
|
38
|
+
|
|
39
|
+
- find old Python virtual environments
|
|
40
|
+
- delete unused Conda environments
|
|
41
|
+
- inspect Poetry environment disk usage
|
|
42
|
+
- clean up `pipx` package environments
|
|
43
|
+
- remove Python caches and build artifacts
|
|
44
|
+
- free disk space consumed by Python development tools
|
|
45
|
+
|
|
33
46
|
```bash
|
|
34
47
|
pipx run killpy --path ~
|
|
35
48
|
# or
|
|
36
49
|
uvx killpy --path ~
|
|
37
50
|
```
|
|
38
51
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## What killpy detects
|
|
52
|
+
### What killpy detects
|
|
42
53
|
|
|
43
54
|
`killpy` supports **11 environment types** across every major Python tool:
|
|
44
55
|
|
|
@@ -102,6 +113,8 @@ killpy --path ~ --exclude "backups,archive,work"
|
|
|
102
113
|
killpy --path ~/projects --delete-all --yes
|
|
103
114
|
```
|
|
104
115
|
|
|
116
|
+
More documentation: [https://tlaloc-es.github.io/killpy/](https://tlaloc-es.github.io/killpy/)
|
|
117
|
+
|
|
105
118
|
______________________________________________________________________
|
|
106
119
|
|
|
107
120
|
## Interactive TUI
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: killpy
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
4
4
|
Summary: List all .venv directories and Conda environments 🐍 on your system and check how much space they are using. You can then choose which ones to delete in order to free up space 🧹.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Tlaloc-Es/killpy
|
|
6
|
+
Project-URL: Documentation, https://tlaloc-es.github.io/killpy/
|
|
7
|
+
Project-URL: Repository, https://github.com/Tlaloc-Es/killpy
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/Tlaloc-Es/killpy/issues
|
|
5
9
|
Classifier: Environment :: Console
|
|
6
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
7
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -20,6 +24,10 @@ Requires-Dist: textual>=1.0.0
|
|
|
20
24
|
|
|
21
25
|
### Reclaim disk space by finding and deleting Python environments you no longer use
|
|
22
26
|
|
|
27
|
+
Python environment cleaner for virtualenv, Conda, Poetry, pipx, pyenv, tox, Pipenv, Hatch, uv, caches, and build artifacts.
|
|
28
|
+
|
|
29
|
+
[Documentation](https://tlaloc-es.github.io/killpy/)
|
|
30
|
+
|
|
23
31
|
[](https://pypi.org/project/killpy/)
|
|
24
32
|
[](https://pypi.org/project/killpy/)
|
|
25
33
|
[](https://pepy.tech/project/killpy)
|
|
@@ -46,15 +54,22 @@ A typical developer machine accumulates **10–40 GB** of Python environments ov
|
|
|
46
54
|
|
|
47
55
|
`killpy` scans your filesystem, shows you everything with its size, and lets you delete it — either from a slick interactive terminal UI or via a single headless command.
|
|
48
56
|
|
|
57
|
+
That makes it useful if you are trying to:
|
|
58
|
+
|
|
59
|
+
- find old Python virtual environments
|
|
60
|
+
- delete unused Conda environments
|
|
61
|
+
- inspect Poetry environment disk usage
|
|
62
|
+
- clean up `pipx` package environments
|
|
63
|
+
- remove Python caches and build artifacts
|
|
64
|
+
- free disk space consumed by Python development tools
|
|
65
|
+
|
|
49
66
|
```bash
|
|
50
67
|
pipx run killpy --path ~
|
|
51
68
|
# or
|
|
52
69
|
uvx killpy --path ~
|
|
53
70
|
```
|
|
54
71
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## What killpy detects
|
|
72
|
+
### What killpy detects
|
|
58
73
|
|
|
59
74
|
`killpy` supports **11 environment types** across every major Python tool:
|
|
60
75
|
|
|
@@ -118,6 +133,8 @@ killpy --path ~ --exclude "backups,archive,work"
|
|
|
118
133
|
killpy --path ~/projects --delete-all --yes
|
|
119
134
|
```
|
|
120
135
|
|
|
136
|
+
More documentation: [https://tlaloc-es.github.io/killpy/](https://tlaloc-es.github.io/killpy/)
|
|
137
|
+
|
|
121
138
|
______________________________________________________________________
|
|
122
139
|
|
|
123
140
|
## Interactive TUI
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "killpy"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.19.0"
|
|
4
4
|
description = "List all .venv directories and Conda environments 🐍 on your system and check how much space they are using. You can then choose which ones to delete in order to free up space 🧹."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
classifiers = [
|
|
@@ -14,6 +14,12 @@ classifiers = [
|
|
|
14
14
|
dependencies = ["click>=8.1.8", "rich>=13.9.4", "textual>=1.0.0"]
|
|
15
15
|
requires-python = ">=3.10"
|
|
16
16
|
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/Tlaloc-Es/killpy"
|
|
19
|
+
Documentation = "https://tlaloc-es.github.io/killpy/"
|
|
20
|
+
Repository = "https://github.com/Tlaloc-Es/killpy"
|
|
21
|
+
"Bug Tracker" = "https://github.com/Tlaloc-Es/killpy/issues"
|
|
22
|
+
|
|
17
23
|
[tool.setuptools]
|
|
18
24
|
license-files = []
|
|
19
25
|
|
|
@@ -24,6 +30,7 @@ include = ["killpy*"]
|
|
|
24
30
|
dev = [
|
|
25
31
|
"commitizen>=4.1.0",
|
|
26
32
|
"coverage>=7.6.10",
|
|
33
|
+
"mkdocs-material>=9.6.0",
|
|
27
34
|
"mypy>=1.14.0",
|
|
28
35
|
"pre-commit>=4.0.1",
|
|
29
36
|
"pytest>=8.3.4",
|
|
@@ -56,7 +63,7 @@ exclude_lines = [
|
|
|
56
63
|
|
|
57
64
|
[tool.commitizen]
|
|
58
65
|
name = "cz_conventional_commits"
|
|
59
|
-
version = "0.
|
|
66
|
+
version = "0.19.0"
|
|
60
67
|
version_files = ["pyproject.toml:version", "README.md:rev:"]
|
|
61
68
|
|
|
62
69
|
[project.scripts]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|