liveConsole 1.5.0__tar.gz → 1.5.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.5.0
3
+ Version: 1.5.1
4
4
  Summary: An IDLE-like debugger to allow for real-time command injection for debugging and testing python code
5
5
  Author-email: Tzur Soffer <tzur.soffer@gmail.com>
6
6
  License: MIT
@@ -40,6 +40,12 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
40
40
 
41
41
  ## Features
42
42
 
43
+ ### Standalone Launch
44
+
45
+ * Once installed, you can launch the console directly by simply typing ```pysole``` or ```liveconsole``` in the terminal
46
+
47
+ * This opens the full GUI without needing to write any code. Perfect for quick debugging and experimenting.
48
+
43
49
  ### Syntax Highlighting
44
50
 
45
51
  * Real-time syntax highlighting using **Pygments** and the **Monokai** style.
@@ -27,6 +27,12 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
27
27
 
28
28
  ## Features
29
29
 
30
+ ### Standalone Launch
31
+
32
+ * Once installed, you can launch the console directly by simply typing ```pysole``` or ```liveconsole``` in the terminal
33
+
34
+ * This opens the full GUI without needing to write any code. Perfect for quick debugging and experimenting.
35
+
30
36
  ### Syntax Highlighting
31
37
 
32
38
  * Real-time syntax highlighting using **Pygments** and the **Monokai** style.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "liveConsole"
3
- version = "1.5.0"
3
+ version = "1.5.1"
4
4
  description = "An IDLE-like debugger to allow for real-time command injection for debugging and testing python code"
5
5
  authors = [{ name="Tzur Soffer", email="tzur.soffer@gmail.com" }]
6
6
  license = {text = "MIT"}
@@ -10,6 +10,7 @@ dependencies = ["customtkinter", "pygments"]
10
10
 
11
11
  [project.scripts]
12
12
  liveconsole = "liveConsole:main"
13
+ pysole = "pysole:main"
13
14
 
14
15
  [build-system]
15
16
  requires = ["setuptools>=61.0", "wheel"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.5.0
3
+ Version: 1.5.1
4
4
  Summary: An IDLE-like debugger to allow for real-time command injection for debugging and testing python code
5
5
  Author-email: Tzur Soffer <tzur.soffer@gmail.com>
6
6
  License: MIT
@@ -40,6 +40,12 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
40
40
 
41
41
  ## Features
42
42
 
43
+ ### Standalone Launch
44
+
45
+ * Once installed, you can launch the console directly by simply typing ```pysole``` or ```liveconsole``` in the terminal
46
+
47
+ * This opens the full GUI without needing to write any code. Perfect for quick debugging and experimenting.
48
+
43
49
  ### Syntax Highlighting
44
50
 
45
51
  * Real-time syntax highlighting using **Pygments** and the **Monokai** style.
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  liveconsole = liveConsole:main
3
+ pysole = pysole:main
File without changes
File without changes
File without changes
File without changes
File without changes