mcpcert-cli 0.1.0__tar.gz → 0.1.1__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.
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/PKG-INFO +3 -4
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/README.md +1 -1
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/pyproject.toml +4 -5
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/__init__.py +1 -1
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/config.py +1 -4
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/.gitignore +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/LICENSE +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/NOTICE +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/api.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/args.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/cli.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/__init__.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/conformance_cmd.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/info_cmd.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/init_cmd.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/update_cmd.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/conformance.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/context.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/contract.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/credentials.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/errors.py +0 -0
- {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/output.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcpcert-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Official mcpcert.org CLI: provision a hosted dev MCP client identity (CIMD) and run an end-to-end OAuth 2.0 + PKCE conformance check, no account required.
|
|
5
5
|
Project-URL: Homepage, https://mcpcert.org
|
|
6
6
|
Project-URL: Issues, https://mcpcert.org/contact
|
|
@@ -8,8 +8,7 @@ License-Expression: Apache-2.0
|
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
License-File: NOTICE
|
|
10
10
|
Keywords: cimd,cli,mcp,mcpcert,model-context-protocol,oauth,oauth2,pkce
|
|
11
|
-
Requires-Python: >=3.
|
|
12
|
-
Requires-Dist: tomli>=2.0.1; python_version < '3.11'
|
|
11
|
+
Requires-Python: >=3.11
|
|
13
12
|
Provides-Extra: dev
|
|
14
13
|
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
15
14
|
Description-Content-Type: text/markdown
|
|
@@ -32,7 +31,7 @@ uv tool install mcpcert-cli # or:
|
|
|
32
31
|
pipx install mcpcert-cli
|
|
33
32
|
```
|
|
34
33
|
|
|
35
|
-
The PyPI package is `mcpcert-cli`; it installs a command named `mcpcert`. Requires Python >= 3.
|
|
34
|
+
The PyPI package is `mcpcert-cli`; it installs a command named `mcpcert`. Requires Python >= 3.11.
|
|
36
35
|
|
|
37
36
|
## Quick start
|
|
38
37
|
|
|
@@ -16,7 +16,7 @@ uv tool install mcpcert-cli # or:
|
|
|
16
16
|
pipx install mcpcert-cli
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
The PyPI package is `mcpcert-cli`; it installs a command named `mcpcert`. Requires Python >= 3.
|
|
19
|
+
The PyPI package is `mcpcert-cli`; it installs a command named `mcpcert`. Requires Python >= 3.11.
|
|
20
20
|
|
|
21
21
|
## Quick start
|
|
22
22
|
|
|
@@ -4,16 +4,15 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mcpcert-cli"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Official mcpcert.org CLI: provision a hosted dev MCP client identity (CIMD) and run an end-to-end OAuth 2.0 + PKCE conformance check, no account required."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
11
11
|
license-files = ["LICENSE", "NOTICE"]
|
|
12
|
-
requires-python = ">=3.
|
|
12
|
+
requires-python = ">=3.11"
|
|
13
13
|
keywords = ["mcp", "model-context-protocol", "oauth", "oauth2", "pkce", "cimd", "mcpcert", "cli"]
|
|
14
|
-
dependencies
|
|
15
|
-
|
|
16
|
-
]
|
|
14
|
+
# No runtime dependencies: TOML reading uses the stdlib `tomllib` (Python 3.11+).
|
|
15
|
+
dependencies = []
|
|
17
16
|
|
|
18
17
|
[project.urls]
|
|
19
18
|
Homepage = "https://mcpcert.org"
|
|
@@ -14,10 +14,7 @@ from typing import Any
|
|
|
14
14
|
from .contract import CONFIG_SCHEMA_VERSION
|
|
15
15
|
from .errors import CliError
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
import tomllib as _toml
|
|
19
|
-
except ModuleNotFoundError: # Python 3.10
|
|
20
|
-
import tomli as _toml # type: ignore[no-redef]
|
|
17
|
+
import tomllib as _toml # stdlib (Python 3.11+)
|
|
21
18
|
|
|
22
19
|
APPNAME_MAX = 63
|
|
23
20
|
CONFIG_KEYS_ORDER = [
|
|
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
|