File tree 1 file changed +11
-15
lines changed
1 file changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -61,16 +61,21 @@ python -m venv venv
61
61
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
62
62
```
63
63
64
- 3 . Install the required dependencies :
64
+ 3 . Install tkreload (in editable mode) :
65
65
``` sh
66
- pip install -r requirements.txt
66
+ pip install -e.[test]
67
67
```
68
68
69
- 4 . Install tkreload:
70
- ``` sh
71
- pip install .
69
+ # Usage
70
+
71
+ To run the app with ` tkreload ` , use the following command in your terminal:
72
+
73
+ ``` bash
74
+ tkreload your_app.py
72
75
```
73
76
77
+ Now, whenever you save changes to your script, tkreload will automatically reload your application.
78
+
74
79
## 🌟 Features
75
80
76
81
- ** Automatic Reloading:** Automatically restarts Tkinter apps upon file changes.
@@ -82,15 +87,6 @@ pip install .
82
87
- ** Real-Time Feedback:** Uses ` rich ` for styled console feedback and progress indicators.
83
88
84
89
85
- # Usage
86
-
87
- To run the app with ` tkreload ` , use the following command in your terminal:
88
-
89
- ``` bash
90
- tkreload your_app.py
91
- ```
92
-
93
- Now, whenever you save changes to your script, tkreload will automatically reload your application.
94
90
95
91
## Testing
96
92
To verify tkreload functionality, follow these steps:
@@ -99,7 +95,7 @@ To verify tkreload functionality, follow these steps:
99
95
100
96
2.Run Tests Using Pytest
101
97
``` bash
102
- pytest .
98
+ pytest -v
103
99
```
104
100
This will run the test suite and confirm tkreload is working as expected.
105
101
You can’t perform that action at this time.
0 commit comments