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.
Files changed (22) hide show
  1. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/PKG-INFO +3 -4
  2. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/README.md +1 -1
  3. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/pyproject.toml +4 -5
  4. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/__init__.py +1 -1
  5. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/config.py +1 -4
  6. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/.gitignore +0 -0
  7. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/LICENSE +0 -0
  8. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/NOTICE +0 -0
  9. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/api.py +0 -0
  10. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/args.py +0 -0
  11. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/cli.py +0 -0
  12. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/__init__.py +0 -0
  13. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/conformance_cmd.py +0 -0
  14. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/info_cmd.py +0 -0
  15. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/init_cmd.py +0 -0
  16. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/commands/update_cmd.py +0 -0
  17. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/conformance.py +0 -0
  18. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/context.py +0 -0
  19. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/contract.py +0 -0
  20. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/credentials.py +0 -0
  21. {mcpcert_cli-0.1.0 → mcpcert_cli-0.1.1}/src/mcpcert/errors.py +0 -0
  22. {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.0
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.10
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.10.
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.10.
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.0"
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.10"
12
+ requires-python = ">=3.11"
13
13
  keywords = ["mcp", "model-context-protocol", "oauth", "oauth2", "pkce", "cimd", "mcpcert", "cli"]
14
- dependencies = [
15
- "tomli>=2.0.1; python_version < '3.11'",
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"
@@ -1,3 +1,3 @@
1
1
  """mcpcert — official CLI for mcpcert.org dev client identities."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.1.1"
@@ -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
- try: # Python 3.11+
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