python-rundeck 0.1.0__tar.gz → 0.2.0__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 (28) hide show
  1. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/PKG-INFO +6 -1
  2. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/pyproject.toml +8 -1
  3. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/LICENSE +0 -0
  4. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/README.md +0 -0
  5. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/__init__.py +0 -0
  6. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/base.py +0 -0
  7. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/client.py +0 -0
  8. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/config.py +0 -0
  9. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/const.py +0 -0
  10. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/exceptions.py +0 -0
  11. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/py.typed +0 -0
  12. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/__init__.py +0 -0
  13. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/__init__.py +0 -0
  14. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/adhoc.py +0 -0
  15. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/config_management.py +0 -0
  16. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/executions.py +0 -0
  17. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/features.py +0 -0
  18. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/jobs.py +0 -0
  19. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/key_storage.py +0 -0
  20. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/metrics.py +0 -0
  21. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/plugins.py +0 -0
  22. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/projects.py +0 -0
  23. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/scheduler.py +0 -0
  24. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/scm.py +0 -0
  25. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/system.py +0 -0
  26. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/tokens.py +0 -0
  27. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/users.py +0 -0
  28. {python_rundeck-0.1.0 → python_rundeck-0.2.0}/src/rundeck/v1/objects/webhooks.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-rundeck
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Python client for the Rundeck API (v14-v56).
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -29,6 +29,11 @@ Requires-Dist: pytest-cov (>=5.0.0,<6.0.0) ; extra == "dev"
29
29
  Requires-Dist: requests (>=2.32.5,<3.0.0)
30
30
  Requires-Dist: ruff (>=0.7.0,<1.0.0) ; extra == "dev"
31
31
  Requires-Dist: safety (>=3.2.0,<4.0.0) ; extra == "dev"
32
+ Project-URL: Changelog, https://gitlab.com/pascal.seckinger/python-rundeck/-/blob/main/CHANGELOG.md
33
+ Project-URL: Documentation, https://gitlab.com/pascal.seckinger/python-rundeck/-/blob/main/README.md
34
+ Project-URL: Homepage, https://gitlab.com/pascal.seckinger/python-rundeck
35
+ Project-URL: Issues, https://gitlab.com/pascal.seckinger/python-rundeck/-/issues
36
+ Project-URL: Repository, https://gitlab.com/pascal.seckinger/python-rundeck
32
37
  Description-Content-Type: text/markdown
33
38
 
34
39
  python-rundeck
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "python-rundeck"
3
- version = "0.1.0"
3
+ version = "0.2.0"
4
4
  description = "Python client for the Rundeck API (v14-v56)."
5
5
  authors = [
6
6
  {name = "Pascal Seckinger",email = "pascal.seckinger@protonmail.com"}
@@ -26,6 +26,13 @@ dependencies = [
26
26
  "requests (>=2.32.5,<3.0.0)"
27
27
  ]
28
28
 
29
+ [project.urls]
30
+ Homepage = "https://gitlab.com/pascal.seckinger/python-rundeck"
31
+ Repository = "https://gitlab.com/pascal.seckinger/python-rundeck"
32
+ Documentation = "https://gitlab.com/pascal.seckinger/python-rundeck/-/blob/main/README.md"
33
+ Issues = "https://gitlab.com/pascal.seckinger/python-rundeck/-/issues"
34
+ Changelog = "https://gitlab.com/pascal.seckinger/python-rundeck/-/blob/main/CHANGELOG.md"
35
+
29
36
  [project.optional-dependencies]
30
37
  dev = [
31
38
  "bandit (>=1.7.9,<2.0.0)",
File without changes
File without changes