kopipasta 0.32.0__tar.gz → 0.33.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.

Potentially problematic release.


This version of kopipasta might be problematic. Click here for more details.

Files changed (22) hide show
  1. {kopipasta-0.32.0/kopipasta.egg-info → kopipasta-0.33.0}/PKG-INFO +1 -1
  2. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/tree_selector.py +2 -1
  3. {kopipasta-0.32.0 → kopipasta-0.33.0/kopipasta.egg-info}/PKG-INFO +1 -1
  4. {kopipasta-0.32.0 → kopipasta-0.33.0}/setup.py +1 -1
  5. {kopipasta-0.32.0 → kopipasta-0.33.0}/LICENSE +0 -0
  6. {kopipasta-0.32.0 → kopipasta-0.33.0}/MANIFEST.in +0 -0
  7. {kopipasta-0.32.0 → kopipasta-0.33.0}/README.md +0 -0
  8. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/__init__.py +0 -0
  9. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/cache.py +0 -0
  10. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/file.py +0 -0
  11. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/import_parser.py +0 -0
  12. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/main.py +0 -0
  13. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta/prompt.py +0 -0
  14. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/SOURCES.txt +0 -0
  15. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/dependency_links.txt +0 -0
  16. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/entry_points.txt +0 -0
  17. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/requires.txt +0 -0
  18. {kopipasta-0.32.0 → kopipasta-0.33.0}/kopipasta.egg-info/top_level.txt +0 -0
  19. {kopipasta-0.32.0 → kopipasta-0.33.0}/requirements.txt +0 -0
  20. {kopipasta-0.32.0 → kopipasta-0.33.0}/setup.cfg +0 -0
  21. {kopipasta-0.32.0 → kopipasta-0.33.0}/tests/test_file.py +0 -0
  22. {kopipasta-0.32.0 → kopipasta-0.33.0}/tests/test_tree_selector.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kopipasta
3
- Version: 0.32.0
3
+ Version: 0.33.0
4
4
  Summary: A CLI tool to generate prompts with project structure and file contents
5
5
  Home-page: https://github.com/mkorpela/kopipasta
6
6
  Author: Mikko Korpela
@@ -150,7 +150,8 @@ class TreeSelector:
150
150
  _, term_height = shutil.get_terminal_size()
151
151
 
152
152
  # Reserve space for header, help panel, and status
153
- available_height = term_height - 8
153
+ reserved_space = 17
154
+ available_height = term_height - reserved_space
154
155
  available_height = max(5, available_height) # Minimum height
155
156
 
156
157
  # Flatten tree to get all visible nodes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kopipasta
3
- Version: 0.32.0
3
+ Version: 0.33.0
4
4
  Summary: A CLI tool to generate prompts with project structure and file contents
5
5
  Home-page: https://github.com/mkorpela/kopipasta
6
6
  Author: Mikko Korpela
@@ -10,7 +10,7 @@ with open("requirements.txt", "r", encoding="utf-8") as f:
10
10
 
11
11
  setup(
12
12
  name="kopipasta",
13
- version="0.32.0",
13
+ version="0.33.0",
14
14
  author="Mikko Korpela",
15
15
  author_email="mikko.korpela@gmail.com",
16
16
  description="A CLI tool to generate prompts with project structure and file contents",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes