python-comport 0.1.0__tar.gz → 0.1.2__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: python-comport
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Interactive arrow-key serial COM port terminal
5
5
  License: MIT
6
6
  Keywords: serial,com port,uart,terminal,tty
@@ -22,6 +22,11 @@ An interactive serial COM port terminal for the command line.
22
22
  - Works on Linux, macOS, and Windows
23
23
  - No extra dependencies beyond `pyserial`
24
24
 
25
+ # Dev
26
+
27
+ press F5 in vscode
28
+
29
+
25
30
  ## Installation
26
31
 
27
32
  ```bash
@@ -41,6 +46,14 @@ comport
41
46
 
42
47
  Settings are saved to `~/.comport-settings.json` so your last port and baud rate are pre-selected on the next run.
43
48
 
49
+ # Publish to pypi
50
+
51
+ ```
52
+ pip install build twine
53
+ python -m build
54
+ twine upload dist/*
55
+ ```
56
+
44
57
  ## Requirements
45
58
 
46
59
  - Python 3.7+
@@ -7,6 +7,11 @@ An interactive serial COM port terminal for the command line.
7
7
  - Works on Linux, macOS, and Windows
8
8
  - No extra dependencies beyond `pyserial`
9
9
 
10
+ # Dev
11
+
12
+ press F5 in vscode
13
+
14
+
10
15
  ## Installation
11
16
 
12
17
  ```bash
@@ -26,6 +31,14 @@ comport
26
31
 
27
32
  Settings are saved to `~/.comport-settings.json` so your last port and baud rate are pre-selected on the next run.
28
33
 
34
+ # Publish to pypi
35
+
36
+ ```
37
+ pip install build twine
38
+ python -m build
39
+ twine upload dist/*
40
+ ```
41
+
29
42
  ## Requirements
30
43
 
31
44
  - Python 3.7+
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-comport"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "Interactive arrow-key serial COM port terminal"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -0,0 +1,3 @@
1
+ from python_comport import main
2
+
3
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-comport
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Interactive arrow-key serial COM port terminal
5
5
  License: MIT
6
6
  Keywords: serial,com port,uart,terminal,tty
@@ -22,6 +22,11 @@ An interactive serial COM port terminal for the command line.
22
22
  - Works on Linux, macOS, and Windows
23
23
  - No extra dependencies beyond `pyserial`
24
24
 
25
+ # Dev
26
+
27
+ press F5 in vscode
28
+
29
+
25
30
  ## Installation
26
31
 
27
32
  ```bash
@@ -41,6 +46,14 @@ comport
41
46
 
42
47
  Settings are saved to `~/.comport-settings.json` so your last port and baud rate are pre-selected on the next run.
43
48
 
49
+ # Publish to pypi
50
+
51
+ ```
52
+ pip install build twine
53
+ python -m build
54
+ twine upload dist/*
55
+ ```
56
+
44
57
  ## Requirements
45
58
 
46
59
  - Python 3.7+
@@ -1,6 +1,7 @@
1
1
  README.md
2
2
  pyproject.toml
3
3
  python_comport/__init__.py
4
+ python_comport/__main__.py
4
5
  python_comport.egg-info/PKG-INFO
5
6
  python_comport.egg-info/SOURCES.txt
6
7
  python_comport.egg-info/dependency_links.txt
File without changes