clonebox 0.1.26__tar.gz → 0.1.28__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.
- {clonebox-0.1.26/src/clonebox.egg-info → clonebox-0.1.28}/PKG-INFO +4 -1
- {clonebox-0.1.26 → clonebox-0.1.28}/README.md +3 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/pyproject.toml +1 -1
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/cli.py +391 -230
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/cloner.py +335 -206
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/dashboard.py +4 -4
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/detector.py +19 -31
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/models.py +19 -2
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/profiles.py +1 -5
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/validator.py +275 -145
- {clonebox-0.1.26 → clonebox-0.1.28/src/clonebox.egg-info}/PKG-INFO +4 -1
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox.egg-info/SOURCES.txt +2 -4
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_cli.py +47 -44
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_cloner.py +21 -12
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_cloner_simple.py +3 -2
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_coverage_additional.py +4 -0
- clonebox-0.1.28/tests/test_coverage_boost_final.py +362 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_dashboard_coverage.py +58 -54
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_detector.py +40 -24
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_models.py +41 -32
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_network.py +4 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_validator.py +113 -72
- clonebox-0.1.26/tests/test_cloner_comprehensive.py +0 -235
- clonebox-0.1.26/tests/test_coverage_boost.py +0 -163
- clonebox-0.1.26/tests/test_validator_mocked.py +0 -342
- {clonebox-0.1.26 → clonebox-0.1.28}/LICENSE +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/setup.cfg +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/__init__.py +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/__main__.py +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/container.py +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox/templates/profiles/ml-dev.yaml +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox.egg-info/dependency_links.txt +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox.egg-info/entry_points.txt +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox.egg-info/requires.txt +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/src/clonebox.egg-info/top_level.txt +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_container.py +0 -0
- {clonebox-0.1.26 → clonebox-0.1.28}/tests/test_profiles.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: clonebox
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.28
|
|
4
4
|
Summary: Clone your workstation environment to an isolated VM with selective apps, paths and services
|
|
5
5
|
Author: CloneBox Team
|
|
6
6
|
License: Apache-2.0
|
|
@@ -89,6 +89,9 @@ CloneBox lets you create isolated virtual machines with only the applications, d
|
|
|
89
89
|
- 🧪 **Configuration testing** - Validate VM settings and functionality
|
|
90
90
|
- 📁 **App data sync** - Include browser profiles, IDE settings, and app configs
|
|
91
91
|
|
|
92
|
+
### GUI - cloned ubuntu
|
|
93
|
+

|
|
94
|
+
|
|
92
95
|
## Use Cases
|
|
93
96
|
|
|
94
97
|
CloneBox excels in scenarios where developers need:
|
|
@@ -40,6 +40,9 @@ CloneBox lets you create isolated virtual machines with only the applications, d
|
|
|
40
40
|
- 🧪 **Configuration testing** - Validate VM settings and functionality
|
|
41
41
|
- 📁 **App data sync** - Include browser profiles, IDE settings, and app configs
|
|
42
42
|
|
|
43
|
+
### GUI - cloned ubuntu
|
|
44
|
+

|
|
45
|
+
|
|
43
46
|
## Use Cases
|
|
44
47
|
|
|
45
48
|
CloneBox excels in scenarios where developers need:
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "clonebox"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.28"
|
|
8
8
|
description = "Clone your workstation environment to an isolated VM with selective apps, paths and services"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "Apache-2.0"}
|