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.
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/PKG-INFO +2 -4
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/pyproject.toml +2 -4
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/PKG-INFO +2 -4
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/README.md +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/setup.cfg +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/__init__.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/__main__.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/config.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/crypto/__init__.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/crypto/keys.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/crypto/messages.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/exceptions.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/network/__init__.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/network/client.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/network/server.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/ui/__init__.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/ui/chat.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_cli/ui/setup.py +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/SOURCES.txt +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/dependency_links.txt +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/entry_points.txt +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/requires.txt +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/top_level.txt +0 -0
- {stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/tests/test_crypto.py +0 -0
- {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.
|
|
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:
|
|
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.
|
|
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
|
|
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"
|
{stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/PKG-INFO
RENAMED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stealth-message-cli
|
|
3
|
-
Version: 0.1.
|
|
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:
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/requires.txt
RENAMED
|
File without changes
|
{stealth_message_cli-0.1.0 → stealth_message_cli-0.1.2}/stealth_message_cli.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|