killpy 0.19.0__tar.gz → 0.19.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.
- {killpy-0.19.0 → killpy-0.19.1}/PKG-INFO +3 -3
- {killpy-0.19.0 → killpy-0.19.1}/README.md +2 -2
- {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/PKG-INFO +3 -3
- {killpy-0.19.0 → killpy-0.19.1}/pyproject.toml +2 -2
- {killpy-0.19.0 → killpy-0.19.1}/killpy/__init__.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/__main__.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/cleaner.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/cleaners/__init__.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/cli.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/__init__.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/clean.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/delete.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/list.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/stats.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/__init__.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/artifacts.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/base.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/cache.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/conda.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/hatch.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/pipenv.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/pipx.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/poetry.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/pyenv.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/tox.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/uv.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/venv.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/files/__init__.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/models.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy/scanner.py +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/SOURCES.txt +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/dependency_links.txt +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/entry_points.txt +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/requires.txt +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/top_level.txt +0 -0
- {killpy-0.19.0 → killpy-0.19.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: killpy
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.1
|
|
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
5
|
Project-URL: Homepage, https://github.com/Tlaloc-Es/killpy
|
|
6
6
|
Project-URL: Documentation, https://tlaloc-es.github.io/killpy/
|
|
@@ -20,7 +20,7 @@ Requires-Dist: textual>=1.0.0
|
|
|
20
20
|
|
|
21
21
|
<div align="center">
|
|
22
22
|
|
|
23
|
-

|
|
23
|
+

|
|
24
24
|
|
|
25
25
|
### Reclaim disk space by finding and deleting Python environments you no longer use
|
|
26
26
|
|
|
@@ -36,7 +36,7 @@ Python environment cleaner for virtualenv, Conda, Poetry, pipx, pyenv, tox, Pipe
|
|
|
36
36
|
[](LICENSE)
|
|
37
37
|
[](<https://twitter.com/intent/tweet?text=%F0%9F%90%8D%20KillPy%20helps%20you%20reclaim%20disk%20space%20by%20detecting%20unused%20Python%20environments%20(.venv,%20poetry%20env,%20conda%20env)%20and%20pipx%20packages.%20Clean,%20organize%20and%20free%20up%20space%20effortlessly!%20%F0%9F%9A%80&url=https://github.com/Tlaloc-Es/KillPy>)
|
|
38
38
|
|
|
39
|
-

|
|
39
|
+

|
|
40
40
|
|
|
41
41
|
</div>
|
|
42
42
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-

|
|
3
|
+

|
|
4
4
|
|
|
5
5
|
### Reclaim disk space by finding and deleting Python environments you no longer use
|
|
6
6
|
|
|
@@ -16,7 +16,7 @@ Python environment cleaner for virtualenv, Conda, Poetry, pipx, pyenv, tox, Pipe
|
|
|
16
16
|
[](LICENSE)
|
|
17
17
|
[](<https://twitter.com/intent/tweet?text=%F0%9F%90%8D%20KillPy%20helps%20you%20reclaim%20disk%20space%20by%20detecting%20unused%20Python%20environments%20(.venv,%20poetry%20env,%20conda%20env)%20and%20pipx%20packages.%20Clean,%20organize%20and%20free%20up%20space%20effortlessly!%20%F0%9F%9A%80&url=https://github.com/Tlaloc-Es/KillPy>)
|
|
18
18
|
|
|
19
|
-

|
|
19
|
+

|
|
20
20
|
|
|
21
21
|
</div>
|
|
22
22
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: killpy
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.1
|
|
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
5
|
Project-URL: Homepage, https://github.com/Tlaloc-Es/killpy
|
|
6
6
|
Project-URL: Documentation, https://tlaloc-es.github.io/killpy/
|
|
@@ -20,7 +20,7 @@ Requires-Dist: textual>=1.0.0
|
|
|
20
20
|
|
|
21
21
|
<div align="center">
|
|
22
22
|
|
|
23
|
-

|
|
23
|
+

|
|
24
24
|
|
|
25
25
|
### Reclaim disk space by finding and deleting Python environments you no longer use
|
|
26
26
|
|
|
@@ -36,7 +36,7 @@ Python environment cleaner for virtualenv, Conda, Poetry, pipx, pyenv, tox, Pipe
|
|
|
36
36
|
[](LICENSE)
|
|
37
37
|
[](<https://twitter.com/intent/tweet?text=%F0%9F%90%8D%20KillPy%20helps%20you%20reclaim%20disk%20space%20by%20detecting%20unused%20Python%20environments%20(.venv,%20poetry%20env,%20conda%20env)%20and%20pipx%20packages.%20Clean,%20organize%20and%20free%20up%20space%20effortlessly!%20%F0%9F%9A%80&url=https://github.com/Tlaloc-Es/KillPy>)
|
|
38
38
|
|
|
39
|
-

|
|
39
|
+

|
|
40
40
|
|
|
41
41
|
</div>
|
|
42
42
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "killpy"
|
|
3
|
-
version = "0.19.
|
|
3
|
+
version = "0.19.1"
|
|
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 = [
|
|
@@ -63,7 +63,7 @@ exclude_lines = [
|
|
|
63
63
|
|
|
64
64
|
[tool.commitizen]
|
|
65
65
|
name = "cz_conventional_commits"
|
|
66
|
-
version = "0.19.
|
|
66
|
+
version = "0.19.1"
|
|
67
67
|
version_files = ["pyproject.toml:version", "README.md:rev:"]
|
|
68
68
|
|
|
69
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
|