grasp-tool 0.1.0__py3-none-any.whl

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.
grasp_tool/__init__.py ADDED
@@ -0,0 +1,17 @@
1
+ """GRASP tool package.
2
+
3
+ This repository is being reorganized into an installable Python package.
4
+ The canonical import name is `grasp_tool` (distribution name: `grasp-tool`).
5
+ """
6
+
7
+ from __future__ import annotations
8
+
9
+ from importlib.metadata import PackageNotFoundError, version as _pkg_version
10
+
11
+ __all__ = ["__version__"]
12
+
13
+ try:
14
+ __version__ = _pkg_version("grasp-tool")
15
+ except PackageNotFoundError:
16
+ # Fallback for editable/uninstalled usage.
17
+ __version__ = "0.1.0"
grasp_tool/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ from __future__ import annotations
2
+
3
+ from grasp_tool.cli.main import main
4
+
5
+
6
+ raise SystemExit(main())
@@ -0,0 +1 @@
1
+ """Command line interface for `grasp_tool`."""