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.
Files changed (22) hide show
  1. {socketflow-0.1.0 → socketflow-0.1.1}/PKG-INFO +3 -3
  2. {socketflow-0.1.0 → socketflow-0.1.1}/setup.py +2 -7
  3. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/__init__.py +1 -1
  4. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/PKG-INFO +3 -3
  5. {socketflow-0.1.0 → socketflow-0.1.1}/README.md +0 -0
  6. {socketflow-0.1.0 → socketflow-0.1.1}/setup.cfg +0 -0
  7. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/client_side/__init__.py +0 -0
  8. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/client_side/client.py +0 -0
  9. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/__init__.py +0 -0
  10. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/blueprint.py +0 -0
  11. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/compression.py +0 -0
  12. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/dispatcher.py +0 -0
  13. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/event.py +0 -0
  14. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/exceptions.py +0 -0
  15. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/message_handler.py +0 -0
  16. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/global_side/message_manager.py +0 -0
  17. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/server_side/__init__.py +0 -0
  18. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow/server_side/server.py +0 -0
  19. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/SOURCES.txt +0 -0
  20. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/dependency_links.txt +0 -0
  21. {socketflow-0.1.0 → socketflow-0.1.1}/socketflow.egg-info/not-zip-safe +0 -0
  22. {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.0
4
- Summary: An asynchronous networking library for Python with advanced features
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,async,asyncio,real-time,messaging,clustering,ssl,tls,encryption,compression,middleware,events,blueprint,failover,load-balancing,redis,distributed
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
- Setup script for SocketFlow - An asynchronous networking library for Python.
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="An asynchronous networking library for Python with advanced features",
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",
@@ -20,7 +20,7 @@ from .global_side.exceptions import (
20
20
  ExceptionType,
21
21
  )
22
22
 
23
- __version__ = "0.1.0"
23
+ __version__ = "0.1.1"
24
24
  __all__ = [
25
25
  "TcpServer",
26
26
  "TcpClient",
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: socketflow
3
- Version: 0.1.0
4
- Summary: An asynchronous networking library for Python with advanced features
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,async,asyncio,real-time,messaging,clustering,ssl,tls,encryption,compression,middleware,events,blueprint,failover,load-balancing,redis,distributed
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