wnox 0.6.0__tar.gz → 0.7.0__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.
- {wnox-0.6.0 → wnox-0.7.0}/PKG-INFO +12 -2
- wnox-0.7.0/README.md +11 -0
- {wnox-0.6.0 → wnox-0.7.0}/pyproject.toml +2 -2
- {wnox-0.6.0 → wnox-0.7.0}/setup.py +2 -2
- {wnox-0.6.0 → wnox-0.7.0}/wnox/__init__.py +2 -1
- {wnox-0.6.0 → wnox-0.7.0}/wnox.egg-info/PKG-INFO +12 -2
- wnox-0.6.0/README.md +0 -1
- {wnox-0.6.0 → wnox-0.7.0}/LICENSE.txt +0 -0
- {wnox-0.6.0 → wnox-0.7.0}/setup.cfg +0 -0
- {wnox-0.6.0 → wnox-0.7.0}/wnox.egg-info/SOURCES.txt +0 -0
- {wnox-0.6.0 → wnox-0.7.0}/wnox.egg-info/dependency_links.txt +0 -0
- {wnox-0.6.0 → wnox-0.7.0}/wnox.egg-info/requires.txt +0 -0
- {wnox-0.6.0 → wnox-0.7.0}/wnox.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: wnox
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.0
|
4
4
|
Summary: QE nexus client.
|
5
5
|
Home-page: https://github.com/arminkardan/pywnox
|
6
6
|
Author: Ethan (Armin) Cardan
|
@@ -9,7 +9,7 @@ Project-URL: homepage, https://github.com/arminkardan/pywnox
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
11
|
Classifier: Operating System :: OS Independent
|
12
|
-
Requires-Python: >=3.
|
12
|
+
Requires-Python: >=3.11
|
13
13
|
Description-Content-Type: text/markdown
|
14
14
|
License-File: LICENSE.txt
|
15
15
|
Requires-Dist: slixmpp
|
@@ -19,3 +19,13 @@ Dynamic: home-page
|
|
19
19
|
Dynamic: requires-python
|
20
20
|
|
21
21
|
QE nexus client.
|
22
|
+
|
23
|
+
How to upload to PyPi:
|
24
|
+
|
25
|
+
pip install build
|
26
|
+
pip install twine
|
27
|
+
|
28
|
+
python -m build
|
29
|
+
twine upload dist/*
|
30
|
+
|
31
|
+
pip install --upgrade --force-reinstall wnox
|
wnox-0.7.0/README.md
ADDED
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "wnox"
|
7
|
-
version = "0.
|
7
|
+
version = "0.7.0"
|
8
8
|
authors = [{ name = "Ethan (Armin) Cardan", email = "armin.fire@gmail.com" }]
|
9
9
|
description = "QE nexus client."
|
10
10
|
readme = "README.md"
|
11
11
|
license = { file = "LICENSE" }
|
12
12
|
dependencies = ["slixmpp","bson"]
|
13
|
-
requires-python = ">=3.
|
13
|
+
requires-python = ">=3.11"
|
14
14
|
classifiers = [
|
15
15
|
"Programming Language :: Python :: 3",
|
16
16
|
"License :: OSI Approved :: MIT License",
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="wnox",
|
5
|
-
version="0.
|
5
|
+
version="0.7.0",
|
6
6
|
packages=find_packages(),
|
7
7
|
install_requires=[],
|
8
8
|
author="Ethan (Armin) Cardan",
|
@@ -16,5 +16,5 @@ setup(
|
|
16
16
|
"License :: OSI Approved :: MIT License",
|
17
17
|
"Operating System :: OS Independent",
|
18
18
|
],
|
19
|
-
python_requires=">=3.
|
19
|
+
python_requires=">=3.11",
|
20
20
|
)
|
@@ -103,7 +103,8 @@ class WSX(ClientXMPP, EventEmitter):
|
|
103
103
|
if "api" in json_data:
|
104
104
|
data = {key: val for key, val in json_data.items() if key != "api"}
|
105
105
|
data = {key: val for key, val in data.items() if key != "mid"}
|
106
|
-
|
106
|
+
data["from"] = from_jid
|
107
|
+
|
107
108
|
if True or len(user_uid) == 24 and ObjectId.is_valid(user_uid):
|
108
109
|
result = await self.emit(json_data["api"], data)
|
109
110
|
if result == None:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: wnox
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.0
|
4
4
|
Summary: QE nexus client.
|
5
5
|
Home-page: https://github.com/arminkardan/pywnox
|
6
6
|
Author: Ethan (Armin) Cardan
|
@@ -9,7 +9,7 @@ Project-URL: homepage, https://github.com/arminkardan/pywnox
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
11
|
Classifier: Operating System :: OS Independent
|
12
|
-
Requires-Python: >=3.
|
12
|
+
Requires-Python: >=3.11
|
13
13
|
Description-Content-Type: text/markdown
|
14
14
|
License-File: LICENSE.txt
|
15
15
|
Requires-Dist: slixmpp
|
@@ -19,3 +19,13 @@ Dynamic: home-page
|
|
19
19
|
Dynamic: requires-python
|
20
20
|
|
21
21
|
QE nexus client.
|
22
|
+
|
23
|
+
How to upload to PyPi:
|
24
|
+
|
25
|
+
pip install build
|
26
|
+
pip install twine
|
27
|
+
|
28
|
+
python -m build
|
29
|
+
twine upload dist/*
|
30
|
+
|
31
|
+
pip install --upgrade --force-reinstall wnox
|
wnox-0.6.0/README.md
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
QE nexus client.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|