You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,12 +32,31 @@ migration flow.
32
32
33
33
## 📦 Installation
34
34
35
-
You can install this package using pip:
35
+
You can install this package using pip with different feature sets:
36
+
37
+
### Standard Installation (Validation Only)
38
+
For basic migration validation without graph visualization:
39
+
40
+
```bash
41
+
pip install pylembic[standard]
42
+
```
43
+
44
+
### Full Installation (All Features)
45
+
For complete functionality including graph visualization:
46
+
47
+
```bash
48
+
pip install pylembic[all]
49
+
```
50
+
51
+
### Basic Installation
52
+
You can also install the basic package without optional dependencies:
36
53
37
54
```bash
38
55
pip install pylembic
39
56
```
40
57
58
+
**Note:** The `show_graph` functionality requires the `[all]` installation option as it depends on `matplotlib`. The core validation features (including branch detection) work with all installation options as they use `networkx` which is included by default.
0 commit comments