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.
- {gitlab_api-25.9.0/gitlab_api.egg-info → gitlab_api-25.9.2}/PKG-INFO +2 -2
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/README.md +1 -1
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/__init__.py +2 -2
- gitlab_api-25.9.2/gitlab_api/__main__.py +7 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2/gitlab_api.egg-info}/PKG-INFO +2 -2
- gitlab_api-25.9.2/gitlab_api.egg-info/entry_points.txt +2 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/pyproject.toml +2 -2
- gitlab_api-25.9.0/gitlab_api/__main__.py +0 -7
- gitlab_api-25.9.0/gitlab_api.egg-info/entry_points.txt +0 -2
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/LICENSE +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/MANIFEST.in +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/decorators.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/exceptions.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_api.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_api_mcp.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_db_models.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_input_models.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/gitlab_response_models.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api/utils.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/SOURCES.txt +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/dependency_links.txt +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/requires.txt +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/gitlab_api.egg-info/top_level.txt +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/requirements.txt +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/setup.cfg +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/conftest.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_gitlab_api.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_gitlab_db_models.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_gitlab_models.py +0 -0
- {gitlab_api-25.9.0 → gitlab_api-25.9.2}/test/test_sqlalchemy.py +0 -0
- {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.
|
|
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
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 25.9.
|
|
46
|
+
*Version: 25.9.2*
|
|
47
47
|
|
|
48
48
|
Pythonic GitLab API Library
|
|
49
49
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# coding: utf-8
|
|
3
|
-
from gitlab_api.gitlab_api_mcp import
|
|
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
|
-
"
|
|
202
|
+
"gitlab_api_mcp",
|
|
203
203
|
"Response",
|
|
204
204
|
"BranchModel",
|
|
205
205
|
"CommitModel",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitlab-api
|
|
3
|
-
Version: 25.9.
|
|
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
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 25.9.
|
|
46
|
+
*Version: 25.9.2*
|
|
47
47
|
|
|
48
48
|
Pythonic GitLab API Library
|
|
49
49
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gitlab-api"
|
|
7
|
-
version = "25.9.
|
|
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:
|
|
31
|
+
gitlab-mcp = "gitlab_api.gitlab_api_mcp:gitlab_api_mcp"
|
|
32
32
|
|
|
33
33
|
[tool.setuptools.packages.find]
|
|
34
34
|
where = ["."]
|
|
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
|
|
File without changes
|
|
File without changes
|