stealth-message-cli 0.1.0__tar.gz → 0.1.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 (25) hide show
  1. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/PKG-INFO +2 -4
  2. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/pyproject.toml +2 -4
  3. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/PKG-INFO +2 -4
  4. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/README.md +0 -0
  5. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/setup.cfg +0 -0
  6. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/__init__.py +0 -0
  7. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/__main__.py +0 -0
  8. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/config.py +0 -0
  9. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/crypto/__init__.py +0 -0
  10. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/crypto/keys.py +0 -0
  11. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/crypto/messages.py +0 -0
  12. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/exceptions.py +0 -0
  13. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/network/__init__.py +0 -0
  14. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/network/client.py +0 -0
  15. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/network/server.py +0 -0
  16. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/ui/__init__.py +0 -0
  17. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/ui/chat.py +0 -0
  18. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/ui/setup.py +0 -0
  19. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/SOURCES.txt +0 -0
  20. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/dependency_links.txt +0 -0
  21. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/entry_points.txt +0 -0
  22. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/requires.txt +0 -0
  23. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/top_level.txt +0 -0
  24. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/tests/test_crypto.py +0 -0
  25. {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/tests/test_network.py +0 -0
@@ -1,11 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stealth-message-cli
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Terminal client for stealth-message — end-to-end encrypted PGP chat
5
5
  License: GPL-3.0-only
6
6
  Project-URL: Homepage, https://syberiancode.com/stealth-message
7
- Project-URL: Repository, https://github.com/syberiancode/stealth-message
8
- Project-URL: Issues, https://github.com/syberiancode/stealth-message/issues
9
7
  Keywords: chat,encryption,pgp,privacy,end-to-end
10
8
  Classifier: Development Status :: 3 - Alpha
11
9
  Classifier: Environment :: Console
@@ -16,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
16
14
  Classifier: Programming Language :: Python :: 3.12
17
15
  Classifier: Topic :: Communications :: Chat
18
16
  Classifier: Topic :: Security :: Cryptography
19
- Requires-Python: <3.13,>=3.10
17
+ Requires-Python: >=3.10
20
18
  Description-Content-Type: text/markdown
21
19
  Requires-Dist: pgpy>=0.6.0
22
20
  Requires-Dist: websockets>=12.0
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "stealth-message-cli"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "Terminal client for stealth-message — end-to-end encrypted PGP chat"
9
9
  readme = {file = "README.md", content-type = "text/markdown"}
10
10
  license = {text = "GPL-3.0-only"}
11
- requires-python = ">=3.10,<3.13"
11
+ requires-python = ">=3.10"
12
12
  keywords = ["chat", "encryption", "pgp", "privacy", "end-to-end"]
13
13
  classifiers = [
14
14
  "Development Status :: 3 - Alpha",
@@ -40,8 +40,6 @@ dev = [
40
40
 
41
41
  [project.urls]
42
42
  Homepage = "https://syberiancode.com/stealth-message"
43
- Repository = "https://github.com/syberiancode/stealth-message"
44
- Issues = "https://github.com/syberiancode/stealth-message/issues"
45
43
 
46
44
  [project.scripts]
47
45
  stealth-cli = "stealth_cli.__main__:main"
@@ -1,11 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stealth-message-cli
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Terminal client for stealth-message — end-to-end encrypted PGP chat
5
5
  License: GPL-3.0-only
6
6
  Project-URL: Homepage, https://syberiancode.com/stealth-message
7
- Project-URL: Repository, https://github.com/syberiancode/stealth-message
8
- Project-URL: Issues, https://github.com/syberiancode/stealth-message/issues
9
7
  Keywords: chat,encryption,pgp,privacy,end-to-end
10
8
  Classifier: Development Status :: 3 - Alpha
11
9
  Classifier: Environment :: Console
@@ -16,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
16
14
  Classifier: Programming Language :: Python :: 3.12
17
15
  Classifier: Topic :: Communications :: Chat
18
16
  Classifier: Topic :: Security :: Cryptography
19
- Requires-Python: <3.13,>=3.10
17
+ Requires-Python: >=3.10
20
18
  Description-Content-Type: text/markdown
21
19
  Requires-Dist: pgpy>=0.6.0
22
20
  Requires-Dist: websockets>=12.0