jsocket 1.9.2__tar.gz → 1.9.3__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.
- {jsocket-1.9.2 → jsocket-1.9.3}/PKG-INFO +2 -2
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket.egg-info/PKG-INFO +2 -2
- {jsocket-1.9.2 → jsocket-1.9.3}/setup.py +2 -2
- {jsocket-1.9.2 → jsocket-1.9.3}/LICENSE +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/README.md +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket/__init__.py +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket/jsocket_base.py +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket/tserver.py +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket.egg-info/SOURCES.txt +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket.egg-info/dependency_links.txt +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/jsocket.egg-info/top_level.txt +0 -0
- {jsocket-1.9.2 → jsocket-1.9.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jsocket
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.3
|
|
4
4
|
Summary: Python JSON Server & Client
|
|
5
5
|
Home-page: https://cpiekarski.com/2012/01/25/python-json-client-server-redux/
|
|
6
6
|
Author: Christopher Piekarski
|
|
@@ -19,5 +19,5 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
|
19
19
|
Classifier: Topic :: System :: Distributed Computing
|
|
20
20
|
Classifier: Topic :: System :: Hardware :: Symmetric Multi-processing
|
|
21
21
|
Provides: jsocket
|
|
22
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
23
|
License-File: LICENSE
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jsocket
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.3
|
|
4
4
|
Summary: Python JSON Server & Client
|
|
5
5
|
Home-page: https://cpiekarski.com/2012/01/25/python-json-client-server-redux/
|
|
6
6
|
Author: Christopher Piekarski
|
|
@@ -19,5 +19,5 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
|
19
19
|
Classifier: Topic :: System :: Distributed Computing
|
|
20
20
|
Classifier: Topic :: System :: Hardware :: Symmetric Multi-processing
|
|
21
21
|
Provides: jsocket
|
|
22
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.8
|
|
23
23
|
License-File: LICENSE
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
from setuptools import setup, Extension
|
|
4
4
|
|
|
5
5
|
setup(name='jsocket',
|
|
6
|
-
version='1.9.
|
|
6
|
+
version='1.9.3',
|
|
7
7
|
description='Python JSON Server & Client',
|
|
8
8
|
author='Christopher Piekarski',
|
|
9
9
|
author_email='chris@cpiekarski.com',
|
|
@@ -13,7 +13,7 @@ setup(name='jsocket',
|
|
|
13
13
|
keywords=['json','socket','server','client'],
|
|
14
14
|
packages=['jsocket'],
|
|
15
15
|
provides=['jsocket'],
|
|
16
|
-
python_requires='>=3.
|
|
16
|
+
python_requires='>=3.8',
|
|
17
17
|
classifiers=[
|
|
18
18
|
'Intended Audience :: Developers',
|
|
19
19
|
'License :: OSI Approved :: Apache Software License',
|
|
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
|