nexus-tui 0.1.15__tar.gz → 0.1.16__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 (28) hide show
  1. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/PKG-INFO +2 -2
  2. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/README.md +1 -1
  3. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/pyproject.toml +1 -1
  4. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/.gitignore +0 -0
  5. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/LICENSE +0 -0
  6. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/__init__.py +0 -0
  7. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/app.py +0 -0
  8. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/config.py +0 -0
  9. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/container.py +0 -0
  10. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/logger.py +0 -0
  11. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/models.py +0 -0
  12. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/__init__.py +0 -0
  13. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/create_project.py +0 -0
  14. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/error.py +0 -0
  15. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/help.py +0 -0
  16. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/project_picker.py +0 -0
  17. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/theme_picker.py +0 -0
  18. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/screens/tool_selector.py +0 -0
  19. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/services/__init__.py +0 -0
  20. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/services/executor.py +0 -0
  21. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/services/scanner.py +0 -0
  22. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/state.py +0 -0
  23. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/style.tcss +0 -0
  24. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/tools.toml +0 -0
  25. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/widgets/__init__.py +0 -0
  26. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/widgets/footer.py +0 -0
  27. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/nexus/widgets/tool_browser.py +0 -0
  28. {nexus_tui-0.1.15 → nexus_tui-0.1.16}/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.15
3
+ Version: 0.1.16
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
@@ -19,7 +19,7 @@ Think of Nexus as a launcher for terminal tools, similar to how Raycast or Alfre
19
19
 
20
20
  **Source Code**: https://github.com/jdluu/Nexus
21
21
 
22
- ![Nexus Logic Demo](docs/nexus_demo.png)
22
+ ![Nexus Logic Demo](https://raw.githubusercontent.com/jdluu/Nexus/main/docs/nexus_demo.png)
23
23
  *Caption: Main dashboard showing projects and tools.*
24
24
 
25
25
  ## Prerequisites
@@ -6,7 +6,7 @@ Think of Nexus as a launcher for terminal tools, similar to how Raycast or Alfre
6
6
 
7
7
  **Source Code**: https://github.com/jdluu/Nexus
8
8
 
9
- ![Nexus Logic Demo](docs/nexus_demo.png)
9
+ ![Nexus Logic Demo](https://raw.githubusercontent.com/jdluu/Nexus/main/docs/nexus_demo.png)
10
10
  *Caption: Main dashboard showing projects and tools.*
11
11
 
12
12
  ## Prerequisites
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nexus-tui"
3
- version = "0.1.15"
3
+ version = "0.1.16"
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