appmesh 1.6.12__tar.gz → 1.6.13__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 (23) hide show
  1. {appmesh-1.6.12 → appmesh-1.6.13}/PKG-INFO +2 -1
  2. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh.egg-info/PKG-INFO +2 -1
  3. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh.egg-info/requires.txt +3 -0
  4. {appmesh-1.6.12 → appmesh-1.6.13}/setup.py +2 -3
  5. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/__init__.py +0 -0
  6. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/app.py +0 -0
  7. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/app_output.py +0 -0
  8. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/app_run.py +0 -0
  9. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/appmesh_client.py +0 -0
  10. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/client_http.py +0 -0
  11. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/client_http_oauth.py +0 -0
  12. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/client_tcp.py +0 -0
  13. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/server_http.py +0 -0
  14. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/server_tcp.py +0 -0
  15. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/tcp_messages.py +0 -0
  16. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh/tcp_transport.py +0 -0
  17. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh.egg-info/SOURCES.txt +0 -0
  18. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh.egg-info/dependency_links.txt +0 -0
  19. {appmesh-1.6.12 → appmesh-1.6.13}/appmesh.egg-info/top_level.txt +0 -0
  20. {appmesh-1.6.12 → appmesh-1.6.13}/pyproject.toml +0 -0
  21. {appmesh-1.6.12 → appmesh-1.6.13}/setup.cfg +0 -0
  22. {appmesh-1.6.12 → appmesh-1.6.13}/test/test_appmesh_client.py +0 -0
  23. {appmesh-1.6.12 → appmesh-1.6.13}/test/test_oauth2.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: appmesh
3
- Version: 1.6.12
3
+ Version: 1.6.13
4
4
  Summary: Client SDK for App Mesh
5
5
  Home-page: https://github.com/laoshanxi/app-mesh
6
6
  Author: laoshanxi
@@ -17,6 +17,7 @@ Requires-Dist: msgpack
17
17
  Requires-Dist: requests_toolbelt
18
18
  Requires-Dist: aniso8601
19
19
  Requires-Dist: PyJWT
20
+ Requires-Dist: dataclasses; python_version < "3.7"
20
21
  Dynamic: author
21
22
  Dynamic: author-email
22
23
  Dynamic: classifier
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: appmesh
3
- Version: 1.6.12
3
+ Version: 1.6.13
4
4
  Summary: Client SDK for App Mesh
5
5
  Home-page: https://github.com/laoshanxi/app-mesh
6
6
  Author: laoshanxi
@@ -17,6 +17,7 @@ Requires-Dist: msgpack
17
17
  Requires-Dist: requests_toolbelt
18
18
  Requires-Dist: aniso8601
19
19
  Requires-Dist: PyJWT
20
+ Requires-Dist: dataclasses; python_version < "3.7"
20
21
  Dynamic: author
21
22
  Dynamic: author-email
22
23
  Dynamic: classifier
@@ -3,3 +3,6 @@ msgpack
3
3
  requests_toolbelt
4
4
  aniso8601
5
5
  PyJWT
6
+
7
+ [:python_version < "3.7"]
8
+ dataclasses
@@ -10,7 +10,7 @@ with io.open(os.path.abspath(readme_path), mode="r", encoding="utf-8") as fh:
10
10
 
11
11
  def get_version():
12
12
  """PyPI package version"""
13
- return "1.6.12"
13
+ return "1.6.13"
14
14
 
15
15
 
16
16
  # Dependencies
@@ -20,9 +20,8 @@ install_requires = [
20
20
  "requests_toolbelt",
21
21
  "aniso8601",
22
22
  "PyJWT",
23
+ "dataclasses; python_version < '3.7'",
23
24
  ]
24
- if sys.version_info < (3, 7):
25
- install_requires.append("dataclasses")
26
25
 
27
26
  setuptools.setup(
28
27
  name="appmesh",
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