nexus-tui 0.1.13__tar.gz → 0.1.14__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 (26) hide show
  1. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/PKG-INFO +1 -1
  2. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/tool_selector.py +0 -1
  3. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/pyproject.toml +1 -1
  4. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/.gitignore +0 -0
  5. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/LICENSE +0 -0
  6. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/README.md +0 -0
  7. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/__init__.py +0 -0
  8. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/app.py +0 -0
  9. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/config.py +0 -0
  10. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/container.py +0 -0
  11. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/logger.py +0 -0
  12. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/models.py +0 -0
  13. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/__init__.py +0 -0
  14. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/create_project.py +0 -0
  15. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/error.py +0 -0
  16. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/help.py +0 -0
  17. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/project_picker.py +0 -0
  18. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/screens/theme_picker.py +0 -0
  19. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/services/__init__.py +0 -0
  20. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/services/executor.py +0 -0
  21. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/services/scanner.py +0 -0
  22. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/state.py +0 -0
  23. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/style.tcss +0 -0
  24. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/tools.toml +0 -0
  25. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/widgets/__init__.py +0 -0
  26. {nexus_tui-0.1.13 → nexus_tui-0.1.14}/nexus/widgets/tool_list_item.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nexus-tui
3
- Version: 0.1.13
3
+ Version: 0.1.14
4
4
  Summary: A TUI orchestrator to manage your installed terminal tools—access everything through a single command
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.12
@@ -13,7 +13,6 @@ from textual.widgets import Label, ListView
13
13
 
14
14
  from nexus.config import get_tools
15
15
  from nexus.widgets.tool_list_item import CategoryListItem, ToolListItem
16
- from nexus.logger import get_logger
17
16
  from nexus.models import Tool
18
17
 
19
18
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nexus-tui"
3
- version = "0.1.13"
3
+ version = "0.1.14"
4
4
  description = "A TUI orchestrator to manage your installed terminal tools—access everything through a single command"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
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