commit-check-mcp 0.1.2__tar.gz → 0.1.3__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 (21) hide show
  1. commit_check_mcp-0.1.3/.github/dependabot.yml +23 -0
  2. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/PKG-INFO +13 -2
  3. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/pyproject.toml +15 -2
  4. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp.egg-info/PKG-INFO +13 -2
  5. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp.egg-info/SOURCES.txt +2 -0
  6. commit_check_mcp-0.1.3/uv.lock +1073 -0
  7. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/.github/workflows/labeler.yml +0 -0
  8. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/.github/workflows/main.yml +0 -0
  9. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/.github/workflows/publish.yml +0 -0
  10. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/.github/workflows/release-drafter.yml +0 -0
  11. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/.gitignore +0 -0
  12. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/LICENSE +0 -0
  13. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/README.md +0 -0
  14. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/setup.cfg +0 -0
  15. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp/__init__.py +0 -0
  16. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp/server.py +0 -0
  17. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp.egg-info/dependency_links.txt +0 -0
  18. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp.egg-info/entry_points.txt +0 -0
  19. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp.egg-info/requires.txt +0 -0
  20. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/src/commit_check_mcp.egg-info/top_level.txt +0 -0
  21. {commit_check_mcp-0.1.2 → commit_check_mcp-0.1.3}/tests/test_server.py +0 -0
@@ -0,0 +1,23 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: github-actions
9
+ directory: /
10
+ schedule:
11
+ interval: "monthly"
12
+ groups:
13
+ github-actions:
14
+ patterns:
15
+ - "*"
16
+ - package-ecosystem: pip
17
+ directory: /
18
+ schedule:
19
+ interval: "monthly"
20
+ groups:
21
+ pip:
22
+ patterns:
23
+ - "*"
@@ -1,9 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commit-check-mcp
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: MCP server exposing commit-check validation tools
5
- Author: commit-check
5
+ Author-email: Xianpeng Shen <xianpeng.shen@gmail.com>
6
6
  License: MIT
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Topic :: Software Development
7
18
  Requires-Python: >=3.10
8
19
  Description-Content-Type: text/markdown
9
20
  License-File: LICENSE
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools>=77", "setuptools-scm", "wheel"]
2
+ requires = ["setuptools>=77", "setuptools-scm"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -9,7 +9,20 @@ readme = "README.md"
9
9
  requires-python = ">=3.10"
10
10
  license = { text = "MIT" }
11
11
  authors = [
12
- { name = "commit-check" }
12
+ { name = "Xianpeng Shen", email = "xianpeng.shen@gmail.com" }
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 4 - Beta",
16
+ "Environment :: Console",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Programming Language :: Python :: 3.14",
25
+ "Topic :: Software Development",
13
26
  ]
14
27
  dependencies = [
15
28
  "commit-check>=2.5.0,<3",
@@ -1,9 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commit-check-mcp
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: MCP server exposing commit-check validation tools
5
- Author: commit-check
5
+ Author-email: Xianpeng Shen <xianpeng.shen@gmail.com>
6
6
  License: MIT
7
+ Classifier: Development Status :: 4 - Beta
8
+ Classifier: Environment :: Console
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Topic :: Software Development
7
18
  Requires-Python: >=3.10
8
19
  Description-Content-Type: text/markdown
9
20
  License-File: LICENSE
@@ -2,6 +2,8 @@
2
2
  LICENSE
3
3
  README.md
4
4
  pyproject.toml
5
+ uv.lock
6
+ .github/dependabot.yml
5
7
  .github/workflows/labeler.yml
6
8
  .github/workflows/main.yml
7
9
  .github/workflows/publish.yml