gitlab-api 25.9.0__tar.gz → 25.9.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 (31) hide show
  1. {gitlab_api-25.9.0/gitlab_api.egg-info → gitlab_api-25.9.2}/PKG-INFO +2 -2
  2. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/README.md +1 -1
  3. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/__init__.py +2 -2
  4. gitlab_api-25.9.2/gitlab_api/__main__.py +7 -0
  5. {gitlab_api-25.9.0 → gitlab_api-25.9.2/gitlab_api.egg-info}/PKG-INFO +2 -2
  6. gitlab_api-25.9.2/gitlab_api.egg-info/entry_points.txt +2 -0
  7. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/pyproject.toml +2 -2
  8. gitlab_api-25.9.0/gitlab_api/__main__.py +0 -7
  9. gitlab_api-25.9.0/gitlab_api.egg-info/entry_points.txt +0 -2
  10. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/LICENSE +0 -0
  11. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/MANIFEST.in +0 -0
  12. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/decorators.py +0 -0
  13. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/exceptions.py +0 -0
  14. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_api.py +0 -0
  15. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_api_mcp.py +0 -0
  16. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_db_models.py +0 -0
  17. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_input_models.py +0 -0
  18. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_response_models.py +0 -0
  19. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/utils.py +0 -0
  20. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/SOURCES.txt +0 -0
  21. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/dependency_links.txt +0 -0
  22. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/requires.txt +0 -0
  23. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/top_level.txt +0 -0
  24. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/requirements.txt +0 -0
  25. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/setup.cfg +0 -0
  26. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/conftest.py +0 -0
  27. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_gitlab_api.py +0 -0
  28. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_gitlab_db_models.py +0 -0
  29. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_gitlab_models.py +0 -0
  30. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_sqlalchemy.py +0 -0
  31. {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitlab-api
3
- Version: 25.9.0
3
+ Version: 25.9.2
4
4
  Summary: GitLab API Python Wrapper
5
5
  Author-email: Audel Rouhi <knucklessg1@gmail.com>
6
6
  License: MIT
@@ -43,7 +43,7 @@ Dynamic: license-file
43
43
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
44
44
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
45
45
 
46
- *Version: 25.9.0*
46
+ *Version: 25.9.2*
47
47
 
48
48
  Pythonic GitLab API Library
49
49
 
@@ -20,7 +20,7 @@
20
20
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
21
21
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
22
22
 
23
- *Version: 25.9.0*
23
+ *Version: 25.9.2*
24
24
 
25
25
  Pythonic GitLab API Library
26
26
 
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env python
2
2
  # coding: utf-8
3
- from gitlab_api.gitlab_api_mcp import main
3
+ from gitlab_api.gitlab_api_mcp import gitlab_api_mcp
4
4
  from gitlab_api.gitlab_input_models import (
5
5
  BranchModel,
6
6
  CommitModel,
@@ -199,7 +199,7 @@ __all__ = [
199
199
  "load_model",
200
200
  "run_migrations",
201
201
  "Api",
202
- "main",
202
+ "gitlab_api_mcp",
203
203
  "Response",
204
204
  "BranchModel",
205
205
  "CommitModel",
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/python
2
+ # coding: utf-8
3
+
4
+ from gitlab_api.gitlab_api_mcp import gitlab_api_mcp
5
+
6
+ if __name__ == "__main__":
7
+ gitlab_api_mcp()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitlab-api
3
- Version: 25.9.0
3
+ Version: 25.9.2
4
4
  Summary: GitLab API Python Wrapper
5
5
  Author-email: Audel Rouhi <knucklessg1@gmail.com>
6
6
  License: MIT
@@ -43,7 +43,7 @@ Dynamic: license-file
43
43
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/gitlab-api)
44
44
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
45
45
 
46
- *Version: 25.9.0*
46
+ *Version: 25.9.2*
47
47
 
48
48
  Pythonic GitLab API Library
49
49
 
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gitlab-mcp = gitlab_api.gitlab_api_mcp:gitlab_api_mcp
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gitlab-api"
7
- version = "25.9.0"
7
+ version = "25.9.2"
8
8
  description = "GitLab API Python Wrapper"
9
9
  readme = "README.md"
10
10
  authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -28,7 +28,7 @@ dependencies = [
28
28
  ]
29
29
 
30
30
  [project.scripts]
31
- gitlab-mcp = "gitlab_api.gitlab_api_mcp:main"
31
+ gitlab-mcp = "gitlab_api.gitlab_api_mcp:gitlab_api_mcp"
32
32
 
33
33
  [tool.setuptools.packages.find]
34
34
  where = ["."]
@@ -1,7 +0,0 @@
1
- #!/usr/bin/python
2
- # coding: utf-8
3
-
4
- from .gitlab_api_mcp import main
5
-
6
- if __name__ == "__main__":
7
- main()
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- gitlab-mcp = gitlab_api.gitlab_api_mcp:main
File without changes
File without changes
File without changes