clonebox 0.1.25__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.
clonebox/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """
2
+ CloneBox - Clone your workstation environment to an isolated VM.
3
+
4
+ Selectively clone applications, paths and services to a new virtual machine
5
+ with bind mounts instead of full disk cloning.
6
+ """
7
+
8
+ __version__ = "0.1.18"
9
+ __author__ = "CloneBox Team"
10
+
11
+ from clonebox.cloner import SelectiveVMCloner
12
+ from clonebox.detector import SystemDetector
13
+
14
+ __all__ = ["SelectiveVMCloner", "SystemDetector", "__version__"]
clonebox/__main__.py ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env python3
2
+ """Entry point for python -m clonebox."""
3
+
4
+ from clonebox.cli import main
5
+
6
+ if __name__ == "__main__":
7
+ main()