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.
Files changed (36) hide show
  1. {killpy-0.19.0 → killpy-0.19.1}/PKG-INFO +3 -3
  2. {killpy-0.19.0 → killpy-0.19.1}/README.md +2 -2
  3. {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/PKG-INFO +3 -3
  4. {killpy-0.19.0 → killpy-0.19.1}/pyproject.toml +2 -2
  5. {killpy-0.19.0 → killpy-0.19.1}/killpy/__init__.py +0 -0
  6. {killpy-0.19.0 → killpy-0.19.1}/killpy/__main__.py +0 -0
  7. {killpy-0.19.0 → killpy-0.19.1}/killpy/cleaner.py +0 -0
  8. {killpy-0.19.0 → killpy-0.19.1}/killpy/cleaners/__init__.py +0 -0
  9. {killpy-0.19.0 → killpy-0.19.1}/killpy/cli.py +0 -0
  10. {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/__init__.py +0 -0
  11. {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/clean.py +0 -0
  12. {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/delete.py +0 -0
  13. {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/list.py +0 -0
  14. {killpy-0.19.0 → killpy-0.19.1}/killpy/commands/stats.py +0 -0
  15. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/__init__.py +0 -0
  16. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/artifacts.py +0 -0
  17. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/base.py +0 -0
  18. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/cache.py +0 -0
  19. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/conda.py +0 -0
  20. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/hatch.py +0 -0
  21. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/pipenv.py +0 -0
  22. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/pipx.py +0 -0
  23. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/poetry.py +0 -0
  24. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/pyenv.py +0 -0
  25. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/tox.py +0 -0
  26. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/uv.py +0 -0
  27. {killpy-0.19.0 → killpy-0.19.1}/killpy/detectors/venv.py +0 -0
  28. {killpy-0.19.0 → killpy-0.19.1}/killpy/files/__init__.py +0 -0
  29. {killpy-0.19.0 → killpy-0.19.1}/killpy/models.py +0 -0
  30. {killpy-0.19.0 → killpy-0.19.1}/killpy/scanner.py +0 -0
  31. {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/SOURCES.txt +0 -0
  32. {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/dependency_links.txt +0 -0
  33. {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/entry_points.txt +0 -0
  34. {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/requires.txt +0 -0
  35. {killpy-0.19.0 → killpy-0.19.1}/killpy.egg-info/top_level.txt +0 -0
  36. {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.0
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
- ![Logo](logo.png)
23
+ ![Logo](https://raw.githubusercontent.com/Tlaloc-Es/killpy/master/logo.png)
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: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
37
37
  [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](<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
- ![killpy in action](show.gif)
39
+ ![killpy in action](https://raw.githubusercontent.com/Tlaloc-Es/killpy/master/show.gif)
40
40
 
41
41
  </div>
42
42
 
@@ -1,6 +1,6 @@
1
1
  <div align="center">
2
2
 
3
- ![Logo](logo.png)
3
+ ![Logo](https://raw.githubusercontent.com/Tlaloc-Es/killpy/master/logo.png)
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: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
17
17
  [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](<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
- ![killpy in action](show.gif)
19
+ ![killpy in action](https://raw.githubusercontent.com/Tlaloc-Es/killpy/master/show.gif)
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.0
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
- ![Logo](logo.png)
23
+ ![Logo](https://raw.githubusercontent.com/Tlaloc-Es/killpy/master/logo.png)
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: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
37
37
  [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](<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
- ![killpy in action](show.gif)
39
+ ![killpy in action](https://raw.githubusercontent.com/Tlaloc-Es/killpy/master/show.gif)
40
40
 
41
41
  </div>
42
42
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "killpy"
3
- version = "0.19.0"
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.0"
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