modscanner 0.1.1__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.
- {modscanner-0.1.1/src/modscanner.egg-info → modscanner-0.1.2}/PKG-INFO +3 -2
- {modscanner-0.1.1 → modscanner-0.1.2}/pyproject.toml +4 -3
- {modscanner-0.1.1 → modscanner-0.1.2/src/modscanner.egg-info}/PKG-INFO +3 -2
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner.egg-info/requires.txt +1 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/LICENSE +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/README.md +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/setup.cfg +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/__init__.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/cli.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/exceptions.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/models.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/py.typed +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/reporters/__init__.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/reporters/console.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/scanner.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/transports/__init__.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/transports/base.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner/transports/pymodbus_transport.py +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner.egg-info/SOURCES.txt +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner.egg-info/dependency_links.txt +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner.egg-info/entry_points.txt +0 -0
- {modscanner-0.1.1 → modscanner-0.1.2}/src/modscanner.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: modscanner
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A safety-first Modbus discovery and register inspection toolkit.
|
|
5
5
|
Author: Davis Onyeoguzoro
|
|
6
6
|
License-Expression: MIT
|
|
@@ -18,9 +18,10 @@ Classifier: Operating System :: OS Independent
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.8
|
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.11
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
+
Requires-Dist: build>=1.5.0
|
|
24
25
|
Requires-Dist: pymodbus<3.15,>=3.14
|
|
25
26
|
Requires-Dist: rich<15,>=13
|
|
26
27
|
Requires-Dist: typer<1,>=0.12
|
|
@@ -5,11 +5,11 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "modscanner"
|
|
8
|
-
version = "0.1.
|
|
8
|
+
version = "0.1.2"
|
|
9
9
|
description = "A safety-first Modbus discovery and register inspection toolkit."
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
|
|
12
|
-
requires-python = ">=3.10" # Allow any version of Python 3.10 and above
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
#requires-python = ">=3.10" # Allow any version of Python 3.10 and above
|
|
13
13
|
license = "MIT"
|
|
14
14
|
license-files = ["LICENSE"]
|
|
15
15
|
|
|
@@ -41,6 +41,7 @@ classifiers = [
|
|
|
41
41
|
]
|
|
42
42
|
|
|
43
43
|
dependencies = [
|
|
44
|
+
"build>=1.5.0",
|
|
44
45
|
"pymodbus>=3.14,<3.15",
|
|
45
46
|
"rich>=13,<15",
|
|
46
47
|
"typer>=0.12,<1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: modscanner
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: A safety-first Modbus discovery and register inspection toolkit.
|
|
5
5
|
Author: Davis Onyeoguzoro
|
|
6
6
|
License-Expression: MIT
|
|
@@ -18,9 +18,10 @@ Classifier: Operating System :: OS Independent
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.8
|
|
19
19
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.11
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
+
Requires-Dist: build>=1.5.0
|
|
24
25
|
Requires-Dist: pymodbus<3.15,>=3.14
|
|
25
26
|
Requires-Dist: rich<15,>=13
|
|
26
27
|
Requires-Dist: typer<1,>=0.12
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|