shellwhisper-cli 1.0.5__tar.gz → 1.0.6__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 (23) hide show
  1. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/PKG-INFO +1 -1
  2. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/pyproject.toml +4 -5
  3. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/shellwhisper_cli.egg-info/PKG-INFO +1 -1
  4. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/LICENSE +0 -0
  5. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/README.md +0 -0
  6. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/setup.cfg +0 -0
  7. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/shellwhisper_cli.egg-info/SOURCES.txt +0 -0
  8. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/shellwhisper_cli.egg-info/dependency_links.txt +0 -0
  9. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/shellwhisper_cli.egg-info/entry_points.txt +0 -0
  10. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/shellwhisper_cli.egg-info/requires.txt +0 -0
  11. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/shellwhisper_cli.egg-info/top_level.txt +0 -0
  12. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/app.py +0 -0
  13. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/components/sidebar.py +0 -0
  14. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/events.py +0 -0
  15. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/chat_screen.py +0 -0
  16. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/forgot_password.py +0 -0
  17. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/join_screen.py +0 -0
  18. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/login.py +0 -0
  19. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/private_whisper_screen.py +0 -0
  20. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/room_action_screen.py +0 -0
  21. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/screens/security_screen.py +0 -0
  22. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/styles/main.tcss +0 -0
  23. {shellwhisper_cli-1.0.5 → shellwhisper_cli-1.0.6}/src/utils/api_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shellwhisper-cli
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: A sleek terminal-based real-time chat client for ShellWhisper
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "shellwhisper-cli"
7
- version = "1.0.5" # Bumped to clear the PyPI filename collision
7
+ version = "1.0.6" # Bumped to 1.0.6 to fix the subpackage inclusion rule
8
8
  description = "A sleek terminal-based real-time chat client for ShellWhisper"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -24,11 +24,10 @@ dependencies = [
24
24
  [project.scripts]
25
25
  shellwhisper = "src.app:main"
26
26
 
27
- # 🛠️ THE ULTIMATE PACKAGE FINDER
28
27
  [tool.setuptools.packages.find]
29
- where = ["."] # Forces scanning from the root client folder
30
- include = ["src*"] # Catches 'src' and every nested subfolder (src.screens, src.utils, etc.)
31
- namespaces = true # Forces inclusion of subfolders even if they lack __init__.py
28
+ where = ["."]
29
+ include = ["src", "src.*"]
30
+ namespaces = true
32
31
 
33
32
  [tool.setuptools.package-data]
34
33
  "*" = ["*.tcss", "*.css"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shellwhisper-cli
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: A sleek terminal-based real-time chat client for ShellWhisper
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3