sysmlv2copilot 0.2.6__tar.gz → 0.2.7__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 (26) hide show
  1. {sysmlv2copilot-0.2.6/sysmlv2copilot.egg-info → sysmlv2copilot-0.2.7}/PKG-INFO +1 -1
  2. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/pyproject.toml +1 -1
  3. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/__init__.py +1 -1
  4. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/cli.py +1 -1
  5. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7/sysmlv2copilot.egg-info}/PKG-INFO +1 -1
  6. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/CHANGELOG.md +0 -0
  7. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/LICENSE +0 -0
  8. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/MANIFEST.in +0 -0
  9. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/PYPI_README.md +0 -0
  10. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/README.md +0 -0
  11. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/examples/README.md +0 -0
  12. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/examples/client_sdk_basic.py +0 -0
  13. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/examples/repair_basic.py +0 -0
  14. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/examples/sdk_smoke_test.py +0 -0
  15. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/setup.cfg +0 -0
  16. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/__main__.py +0 -0
  17. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/client.py +0 -0
  18. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/convenience.py +0 -0
  19. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/exceptions.py +0 -0
  20. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/input_utils.py +0 -0
  21. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot/types.py +0 -0
  22. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot.egg-info/SOURCES.txt +0 -0
  23. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot.egg-info/dependency_links.txt +0 -0
  24. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot.egg-info/entry_points.txt +0 -0
  25. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot.egg-info/requires.txt +0 -0
  26. {sysmlv2copilot-0.2.6 → sysmlv2copilot-0.2.7}/sysmlv2copilot.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sysmlv2copilot
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: Internal Python client SDK and CLI for the SysML refinement API used by the Visual Design and Engineering Lab at Carnegie Mellon University
5
5
  Author: Chance LaVoie
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sysmlv2copilot"
7
- version = "0.2.6"
7
+ version = "0.2.7"
8
8
  description = "Internal Python client SDK and CLI for the SysML refinement API used by the Visual Design and Engineering Lab at Carnegie Mellon University"
9
9
  readme = "PYPI_README.md"
10
10
  requires-python = ">=3.11"
@@ -26,7 +26,7 @@ from .types import (
26
26
  try:
27
27
  __version__ = version("sysmlv2copilot")
28
28
  except PackageNotFoundError:
29
- __version__ = "0.2.6"
29
+ __version__ = "0.2.7"
30
30
 
31
31
  __all__ = [
32
32
  "APIConnectionError",
@@ -62,7 +62,7 @@ def build_parser() -> argparse.ArgumentParser:
62
62
  parser.add_argument(
63
63
  "--base-url",
64
64
  default=os.getenv("SYSMLV2COPILOT_BASE_URL", DEFAULT_BASE_URL),
65
- help="API base URL.",
65
+ help=argparse.SUPPRESS,
66
66
  )
67
67
  parser.add_argument(
68
68
  "--api-key",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sysmlv2copilot
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: Internal Python client SDK and CLI for the SysML refinement API used by the Visual Design and Engineering Lab at Carnegie Mellon University
5
5
  Author: Chance LaVoie
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes