shellwhisper-cli 1.0.1__tar.gz → 1.0.2__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 (24) hide show
  1. shellwhisper_cli-1.0.2/LICENSE +19 -0
  2. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/PKG-INFO +3 -1
  3. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/pyproject.toml +5 -2
  4. {shellwhisper_cli-1.0.1/src → shellwhisper_cli-1.0.2}/shellwhisper_cli.egg-info/PKG-INFO +3 -1
  5. shellwhisper_cli-1.0.2/shellwhisper_cli.egg-info/SOURCES.txt +20 -0
  6. shellwhisper_cli-1.0.2/shellwhisper_cli.egg-info/top_level.txt +1 -0
  7. shellwhisper_cli-1.0.1/src/shellwhisper_cli.egg-info/SOURCES.txt +0 -19
  8. shellwhisper_cli-1.0.1/src/shellwhisper_cli.egg-info/top_level.txt +0 -7
  9. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/README.md +0 -0
  10. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/setup.cfg +0 -0
  11. {shellwhisper_cli-1.0.1/src → shellwhisper_cli-1.0.2}/shellwhisper_cli.egg-info/dependency_links.txt +0 -0
  12. {shellwhisper_cli-1.0.1/src → shellwhisper_cli-1.0.2}/shellwhisper_cli.egg-info/entry_points.txt +0 -0
  13. {shellwhisper_cli-1.0.1/src → shellwhisper_cli-1.0.2}/shellwhisper_cli.egg-info/requires.txt +0 -0
  14. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/app.py +0 -0
  15. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/components/sidebar.py +0 -0
  16. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/events.py +0 -0
  17. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/chat_screen.py +0 -0
  18. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/forgot_password.py +0 -0
  19. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/join_screen.py +0 -0
  20. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/login.py +0 -0
  21. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/private_whisper_screen.py +0 -0
  22. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/room_action_screen.py +0 -0
  23. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/screens/security_screen.py +0 -0
  24. {shellwhisper_cli-1.0.1 → shellwhisper_cli-1.0.2}/src/utils/api_client.py +0 -0
@@ -0,0 +1,19 @@
1
+ 📜 The ShellWhisper Public License (SWPL)
2
+ Version 1.0, May 2026
3
+
4
+ Copyright (c) 2026 Souvik Chatterjee (codassassin)
5
+
6
+ 1. Purpose
7
+ The ShellWhisper Public License is designed to foster a community of terminal-centric developers while ensuring the core architectural integrity of the ShellWhisper (SW) messaging ecosystem remains open and credited.
8
+
9
+ 2. Grant of Rights
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including the rights to use, copy, modify, merge, publish, and distribute copies of the Software, provided that the original author is credited as the primary architect.
11
+
12
+ 3. Architectural Integrity
13
+ Any derivative works or forks of this Software that utilize the Deterministic Room ID Strategy (alphabetical sorting of member usernames for private room creation) or the TUI-first (Terminal User Interface) methodology must include a prominent reference to the original ShellWhisper project in their documentation.
14
+
15
+ 4. Professional Usage
16
+ While this software was developed with the Fedora Workstation and Spring Boot/MongoDB stack in mind, it is licensed for cross-platform deployment. However, the use of this software within enterprise network automation environments must comply with standard security auditing practices as defined by the user's local jurisdiction.
17
+
18
+ 5. Liability & Warranty
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND. THE AUTHOR SHALL NOT BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE OR ITS CAPABILITIES IN REAL-TIME MESSAGING ENVIRONMENTS.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shellwhisper-cli
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A sleek terminal-based real-time chat client for ShellWhisper
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -9,9 +9,11 @@ Classifier: Operating System :: OS Independent
9
9
  Classifier: Topic :: Communications :: Chat
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
+ License-File: LICENSE
12
13
  Requires-Dist: textual>=0.50.0
13
14
  Requires-Dist: requests>=2.31.0
14
15
  Requires-Dist: websocket-client>=1.7.0
16
+ Dynamic: license-file
15
17
 
16
18
  # ShellWhisper CLI
17
19
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "shellwhisper-cli"
7
- version = "1.0.1"
7
+ version = "1.0.2"
8
8
  description = "A sleek terminal-based real-time chat client for ShellWhisper"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -22,4 +22,7 @@ dependencies = [
22
22
  ]
23
23
 
24
24
  [project.scripts]
25
- shellwhisper = "src.app:main"
25
+ shellwhisper = "src.app:main"
26
+
27
+ [tool.setuptools.packages.find]
28
+ include = ["src", "src.*"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shellwhisper-cli
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A sleek terminal-based real-time chat client for ShellWhisper
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -9,9 +9,11 @@ Classifier: Operating System :: OS Independent
9
9
  Classifier: Topic :: Communications :: Chat
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
+ License-File: LICENSE
12
13
  Requires-Dist: textual>=0.50.0
13
14
  Requires-Dist: requests>=2.31.0
14
15
  Requires-Dist: websocket-client>=1.7.0
16
+ Dynamic: license-file
15
17
 
16
18
  # ShellWhisper CLI
17
19
 
@@ -0,0 +1,20 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ shellwhisper_cli.egg-info/PKG-INFO
5
+ shellwhisper_cli.egg-info/SOURCES.txt
6
+ shellwhisper_cli.egg-info/dependency_links.txt
7
+ shellwhisper_cli.egg-info/entry_points.txt
8
+ shellwhisper_cli.egg-info/requires.txt
9
+ shellwhisper_cli.egg-info/top_level.txt
10
+ src/app.py
11
+ src/events.py
12
+ src/components/sidebar.py
13
+ src/screens/chat_screen.py
14
+ src/screens/forgot_password.py
15
+ src/screens/join_screen.py
16
+ src/screens/login.py
17
+ src/screens/private_whisper_screen.py
18
+ src/screens/room_action_screen.py
19
+ src/screens/security_screen.py
20
+ src/utils/api_client.py
@@ -1,19 +0,0 @@
1
- README.md
2
- pyproject.toml
3
- src/app.py
4
- src/events.py
5
- src/components/sidebar.py
6
- src/screens/chat_screen.py
7
- src/screens/forgot_password.py
8
- src/screens/join_screen.py
9
- src/screens/login.py
10
- src/screens/private_whisper_screen.py
11
- src/screens/room_action_screen.py
12
- src/screens/security_screen.py
13
- src/shellwhisper_cli.egg-info/PKG-INFO
14
- src/shellwhisper_cli.egg-info/SOURCES.txt
15
- src/shellwhisper_cli.egg-info/dependency_links.txt
16
- src/shellwhisper_cli.egg-info/entry_points.txt
17
- src/shellwhisper_cli.egg-info/requires.txt
18
- src/shellwhisper_cli.egg-info/top_level.txt
19
- src/utils/api_client.py
@@ -1,7 +0,0 @@
1
- app
2
- components
3
- events
4
- models
5
- screens
6
- styles
7
- utils