socketflow 0.1.0__tar.gz → 0.1.1__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.
- {socketflow-0.1.0 → socketflow-0.1.1}/PKG-INFO +3 -3
- {socketflow-0.1.0 → socketflow-0.1.1}/setup.py +2 -7
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/__init__.py +1 -1
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/PKG-INFO +3 -3
- {socketflow-0.1.0 → socketflow-0.1.1}/README.md +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/setup.cfg +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/client_side/__init__.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/client_side/client.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/__init__.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/blueprint.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/compression.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/dispatcher.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/event.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/exceptions.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/message_handler.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/message_manager.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/server_side/__init__.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/server_side/server.py +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/SOURCES.txt +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/dependency_links.txt +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/not-zip-safe +0 -0
- {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: socketflow
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: TCP networking for Python, without the boilerplate.
|
|
5
5
|
Home-page: https://github.com/ayammaximilian/socketflow
|
|
6
6
|
Author: SocketFlow Team
|
|
7
7
|
Author-email: contact@socketflow.dev
|
|
@@ -9,7 +9,7 @@ License: MIT
|
|
|
9
9
|
Project-URL: Bug Reports, https://github.com/ayammaximilian/socketflow/issues
|
|
10
10
|
Project-URL: Source, https://github.com/ayammaximilian/socketflow
|
|
11
11
|
Project-URL: Documentation, https://socketflow.dev
|
|
12
|
-
Keywords: networking,tcp,socket,server,client,
|
|
12
|
+
Keywords: networking,tcp,socket,server,client,real-time,messaging,clustering,ssl,tls,encryption,compression,middleware,events,blueprint,failover,load-balancing,redis,distributed
|
|
13
13
|
Platform: any
|
|
14
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
"""
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
SocketFlow provides both server and client functionality with advanced features like
|
|
6
|
-
clustering, compression, middleware, event handling, SSL/TLS encryption, and more.
|
|
3
|
+
TCP networking for Python, without the boilerplate.
|
|
7
4
|
"""
|
|
8
5
|
|
|
9
6
|
from setuptools import setup, find_packages
|
|
@@ -32,7 +29,7 @@ setup(
|
|
|
32
29
|
version=get_version(),
|
|
33
30
|
author="SocketFlow Team",
|
|
34
31
|
author_email="contact@socketflow.dev",
|
|
35
|
-
description="
|
|
32
|
+
description="TCP networking for Python, without the boilerplate.",
|
|
36
33
|
long_description=read_readme(),
|
|
37
34
|
long_description_content_type="text/markdown",
|
|
38
35
|
url="https://github.com/ayammaximilian/socketflow",
|
|
@@ -71,8 +68,6 @@ setup(
|
|
|
71
68
|
"socket",
|
|
72
69
|
"server",
|
|
73
70
|
"client",
|
|
74
|
-
"async",
|
|
75
|
-
"asyncio",
|
|
76
71
|
"real-time",
|
|
77
72
|
"messaging",
|
|
78
73
|
"clustering",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: socketflow
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: TCP networking for Python, without the boilerplate.
|
|
5
5
|
Home-page: https://github.com/ayammaximilian/socketflow
|
|
6
6
|
Author: SocketFlow Team
|
|
7
7
|
Author-email: contact@socketflow.dev
|
|
@@ -9,7 +9,7 @@ License: MIT
|
|
|
9
9
|
Project-URL: Bug Reports, https://github.com/ayammaximilian/socketflow/issues
|
|
10
10
|
Project-URL: Source, https://github.com/ayammaximilian/socketflow
|
|
11
11
|
Project-URL: Documentation, https://socketflow.dev
|
|
12
|
-
Keywords: networking,tcp,socket,server,client,
|
|
12
|
+
Keywords: networking,tcp,socket,server,client,real-time,messaging,clustering,ssl,tls,encryption,compression,middleware,events,blueprint,failover,load-balancing,redis,distributed
|
|
13
13
|
Platform: any
|
|
14
14
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|