workpeg 0.5.1__tar.gz → 0.5.2__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 (37) hide show
  1. {workpeg-0.5.1/src/workpeg.egg-info → workpeg-0.5.2}/PKG-INFO +3 -3
  2. {workpeg-0.5.1 → workpeg-0.5.2}/pyproject.toml +3 -3
  3. {workpeg-0.5.1 → workpeg-0.5.2/src/workpeg.egg-info}/PKG-INFO +3 -3
  4. {workpeg-0.5.1 → workpeg-0.5.2}/LICENSE +0 -0
  5. {workpeg-0.5.1 → workpeg-0.5.2}/MANIFEST.in +0 -0
  6. {workpeg-0.5.1 → workpeg-0.5.2}/README.md +0 -0
  7. {workpeg-0.5.1 → workpeg-0.5.2}/setup.cfg +0 -0
  8. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/__init__.py +0 -0
  9. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/build.py +0 -0
  10. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/cli.py +0 -0
  11. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/config.py +0 -0
  12. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/context.py +0 -0
  13. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/create_new.py +0 -0
  14. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/run.py +0 -0
  15. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/runtime.py +0 -0
  16. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/submit.py +0 -0
  17. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/__init__.py +0 -0
  18. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/functions/Dockerfile +0 -0
  19. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/functions/LICENSE +0 -0
  20. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/functions/README.md +0 -0
  21. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/functions/app/__init__.py +0 -0
  22. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/functions/app/main.py +0 -0
  23. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/templates/functions/requirements.txt +0 -0
  24. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg/utils.py +0 -0
  25. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg.egg-info/SOURCES.txt +0 -0
  26. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg.egg-info/dependency_links.txt +0 -0
  27. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg.egg-info/entry_points.txt +0 -0
  28. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg.egg-info/requires.txt +0 -0
  29. {workpeg-0.5.1 → workpeg-0.5.2}/src/workpeg.egg-info/top_level.txt +0 -0
  30. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_build.py +0 -0
  31. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_cli.py +0 -0
  32. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_context.py +0 -0
  33. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_create_new.py +0 -0
  34. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_run.py +0 -0
  35. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_runtime.py +0 -0
  36. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_submit.py +0 -0
  37. {workpeg-0.5.1 → workpeg-0.5.2}/tests/test_utils.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: workpeg
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: Workpeg function runtime and SDK
5
5
  Author-email: Workpeg <support@workpeg.com>
6
6
  License: MIT
7
- Project-URL: Homepage, https://gitlab.com/workpeg/workpeg
8
- Project-URL: Repository, https://gitlab.com/workpeg/workpeg
7
+ Project-URL: Homepage, https://gitlab.com/workpeg/workpeg-sdk
8
+ Project-URL: Repository, https://developers.workpeg.com
9
9
  Keywords: workpeg,serverless,functions,runtime
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3 :: Only
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "workpeg"
7
- version = "0.5.1"
7
+ version = "0.5.2"
8
8
  description = "Workpeg function runtime and SDK"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -25,8 +25,8 @@ dependencies = [
25
25
  ]
26
26
 
27
27
  [project.urls]
28
- Homepage = "https://gitlab.com/workpeg/workpeg"
29
- Repository = "https://gitlab.com/workpeg/workpeg"
28
+ Homepage = "https://gitlab.com/workpeg/workpeg-sdk"
29
+ Repository = "https://developers.workpeg.com"
30
30
 
31
31
  [project.scripts]
32
32
  workpeg = "workpeg.cli:main"
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: workpeg
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: Workpeg function runtime and SDK
5
5
  Author-email: Workpeg <support@workpeg.com>
6
6
  License: MIT
7
- Project-URL: Homepage, https://gitlab.com/workpeg/workpeg
8
- Project-URL: Repository, https://gitlab.com/workpeg/workpeg
7
+ Project-URL: Homepage, https://gitlab.com/workpeg/workpeg-sdk
8
+ Project-URL: Repository, https://developers.workpeg.com
9
9
  Keywords: workpeg,serverless,functions,runtime
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3 :: Only
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
File without changes
File without changes