repomap-cli 1.0.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.
@@ -0,0 +1,3 @@
1
+ from .cli import main
2
+
3
+ __all__ = ["main"]
@@ -0,0 +1,12 @@
1
+ from pathlib import Path
2
+ import sys
3
+
4
+ if __package__ in (None, ""):
5
+ sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
6
+ from repomap.cli.cli import main
7
+ else:
8
+ from .cli import main
9
+
10
+
11
+ if __name__ == "__main__":
12
+ raise SystemExit(main())