modscanner 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.
Files changed (22) hide show
  1. {modscanner-0.1.0/src/modscanner.egg-info → modscanner-0.1.2}/PKG-INFO +11 -8
  2. {modscanner-0.1.0 → modscanner-0.1.2}/README.md +4 -1
  3. {modscanner-0.1.0 → modscanner-0.1.2}/pyproject.toml +12 -7
  4. {modscanner-0.1.0 → modscanner-0.1.2/src/modscanner.egg-info}/PKG-INFO +11 -8
  5. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner.egg-info/requires.txt +1 -0
  6. {modscanner-0.1.0 → modscanner-0.1.2}/LICENSE +0 -0
  7. {modscanner-0.1.0 → modscanner-0.1.2}/setup.cfg +0 -0
  8. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/__init__.py +0 -0
  9. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/cli.py +0 -0
  10. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/exceptions.py +0 -0
  11. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/models.py +0 -0
  12. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/py.typed +0 -0
  13. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/reporters/__init__.py +0 -0
  14. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/reporters/console.py +0 -0
  15. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/scanner.py +0 -0
  16. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/transports/__init__.py +0 -0
  17. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/transports/base.py +0 -0
  18. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner/transports/pymodbus_transport.py +0 -0
  19. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner.egg-info/SOURCES.txt +0 -0
  20. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner.egg-info/dependency_links.txt +0 -0
  21. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner.egg-info/entry_points.txt +0 -0
  22. {modscanner-0.1.0 → modscanner-0.1.2}/src/modscanner.egg-info/top_level.txt +0 -0
@@ -1,27 +1,27 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: modscanner
3
- Version: 0.1.0
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
7
7
  Project-URL: Homepage, https://github.com/davisonyeas/modscanner
8
- Project-URL: Documentation, https://davisonyeas.github.io/modscanner/
8
+ Project-URL: Documentation, https://github.com/Davisonyeas/modscanner
9
9
  Project-URL: Repository, https://github.com/davisonyeas/modscanner
10
10
  Project-URL: Issues, https://github.com/davisonyeas/modscanner/issues
11
11
  Project-URL: Changelog, https://github.com/davisonyeas/modscanner/blob/master/CHANGELOG.md
12
- Keywords: modbus,modbus-tcp,modbus-rtu,industrial-automation,plc,scada
12
+ Project-URL: Source, https://github.com/davisonyeas/modscanner
13
+ Keywords: modbus,modbus-tcp,modbus-rtu,industrial-automation,plc,scada,automation
13
14
  Classifier: Development Status :: 2 - Pre-Alpha
14
15
  Classifier: Intended Audience :: Developers
15
16
  Classifier: Intended Audience :: Manufacturing
16
17
  Classifier: Operating System :: OS Independent
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3 :: Only
21
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
21
  Requires-Python: >=3.11
23
22
  Description-Content-Type: text/markdown
24
23
  License-File: LICENSE
24
+ Requires-Dist: build>=1.5.0
25
25
  Requires-Dist: pymodbus<3.15,>=3.14
26
26
  Requires-Dist: rich<15,>=13
27
27
  Requires-Dist: typer<1,>=0.12
@@ -53,7 +53,7 @@ Early development. Version 0.1.0 supports only
53
53
 
54
54
  Install ModScanner from PyPI using either of two(2) methods the below:
55
55
 
56
- 1. Install ModScanner from PyPI:
56
+ 1. Using pip:
57
57
 
58
58
  ```bash
59
59
  pip install modscanner
@@ -151,6 +151,9 @@ Version 0.1.0 does not yet support:
151
151
 
152
152
  See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
153
153
 
154
+ ## Package PyPI
155
+ Visit [https://pypi.org/project/modscanner/](https://pypi.org/project/modscanner/)
156
+
154
157
  ## Security
155
158
 
156
159
  Do not use ModScanner to perform unauthorized scanning or testing.
@@ -24,7 +24,7 @@ Early development. Version 0.1.0 supports only
24
24
 
25
25
  Install ModScanner from PyPI using either of two(2) methods the below:
26
26
 
27
- 1. Install ModScanner from PyPI:
27
+ 1. Using pip:
28
28
 
29
29
  ```bash
30
30
  pip install modscanner
@@ -122,6 +122,9 @@ Version 0.1.0 does not yet support:
122
122
 
123
123
  See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
124
124
 
125
+ ## Package PyPI
126
+ Visit [https://pypi.org/project/modscanner/](https://pypi.org/project/modscanner/)
127
+
125
128
  ## Security
126
129
 
127
130
  Do not use ModScanner to perform unauthorized scanning or testing.
@@ -5,10 +5,11 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "modscanner"
8
- version = "0.1.0"
8
+ version = "0.1.2"
9
9
  description = "A safety-first Modbus discovery and register inspection toolkit."
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.11"
12
+ #requires-python = ">=3.10" # Allow any version of Python 3.10 and above
12
13
  license = "MIT"
13
14
  license-files = ["LICENSE"]
14
15
 
@@ -23,6 +24,7 @@ keywords = [
23
24
  "industrial-automation",
24
25
  "plc",
25
26
  "scada",
27
+ "automation",
26
28
  ]
27
29
 
28
30
  classifiers = [
@@ -30,14 +32,16 @@ classifiers = [
30
32
  "Intended Audience :: Developers",
31
33
  "Intended Audience :: Manufacturing",
32
34
  "Operating System :: OS Independent",
33
- "Programming Language :: Python :: 3",
34
- "Programming Language :: Python :: 3.11",
35
- "Programming Language :: Python :: 3.12",
36
- "Programming Language :: Python :: 3.13",
35
+ "Programming Language :: Python :: 3.8",
36
+ "Programming Language :: Python :: 3 :: Only", # Explicitly allow only Python 3 and no Python 2
37
+ # "Programming Language :: Python :: 3.11",
38
+ # "Programming Language :: Python :: 3.12",
39
+ # "Programming Language :: Python :: 3.13",
37
40
  "Topic :: Software Development :: Libraries :: Python Modules",
38
41
  ]
39
42
 
40
43
  dependencies = [
44
+ "build>=1.5.0",
41
45
  "pymodbus>=3.14,<3.15",
42
46
  "rich>=13,<15",
43
47
  "typer>=0.12,<1",
@@ -50,11 +54,12 @@ modscanner = "modscanner.cli:app"
50
54
 
51
55
  [project.urls]
52
56
  Homepage = "https://github.com/davisonyeas/modscanner"
53
- Documentation = "https://davisonyeas.github.io/modscanner/"
57
+ # Documentation = "https://davisonyeas.github.io/modscanner/"
58
+ Documentation = "https://github.com/Davisonyeas/modscanner"
54
59
  Repository = "https://github.com/davisonyeas/modscanner"
55
60
  Issues = "https://github.com/davisonyeas/modscanner/issues"
56
61
  Changelog = "https://github.com/davisonyeas/modscanner/blob/master/CHANGELOG.md"
57
-
62
+ Source = "https://github.com/davisonyeas/modscanner"
58
63
 
59
64
  [tool.setuptools.packages.find]
60
65
  where = ["src"]
@@ -1,27 +1,27 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: modscanner
3
- Version: 0.1.0
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
7
7
  Project-URL: Homepage, https://github.com/davisonyeas/modscanner
8
- Project-URL: Documentation, https://davisonyeas.github.io/modscanner/
8
+ Project-URL: Documentation, https://github.com/Davisonyeas/modscanner
9
9
  Project-URL: Repository, https://github.com/davisonyeas/modscanner
10
10
  Project-URL: Issues, https://github.com/davisonyeas/modscanner/issues
11
11
  Project-URL: Changelog, https://github.com/davisonyeas/modscanner/blob/master/CHANGELOG.md
12
- Keywords: modbus,modbus-tcp,modbus-rtu,industrial-automation,plc,scada
12
+ Project-URL: Source, https://github.com/davisonyeas/modscanner
13
+ Keywords: modbus,modbus-tcp,modbus-rtu,industrial-automation,plc,scada,automation
13
14
  Classifier: Development Status :: 2 - Pre-Alpha
14
15
  Classifier: Intended Audience :: Developers
15
16
  Classifier: Intended Audience :: Manufacturing
16
17
  Classifier: Operating System :: OS Independent
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
- Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3 :: Only
21
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
21
  Requires-Python: >=3.11
23
22
  Description-Content-Type: text/markdown
24
23
  License-File: LICENSE
24
+ Requires-Dist: build>=1.5.0
25
25
  Requires-Dist: pymodbus<3.15,>=3.14
26
26
  Requires-Dist: rich<15,>=13
27
27
  Requires-Dist: typer<1,>=0.12
@@ -53,7 +53,7 @@ Early development. Version 0.1.0 supports only
53
53
 
54
54
  Install ModScanner from PyPI using either of two(2) methods the below:
55
55
 
56
- 1. Install ModScanner from PyPI:
56
+ 1. Using pip:
57
57
 
58
58
  ```bash
59
59
  pip install modscanner
@@ -151,6 +151,9 @@ Version 0.1.0 does not yet support:
151
151
 
152
152
  See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
153
153
 
154
+ ## Package PyPI
155
+ Visit [https://pypi.org/project/modscanner/](https://pypi.org/project/modscanner/)
156
+
154
157
  ## Security
155
158
 
156
159
  Do not use ModScanner to perform unauthorized scanning or testing.
@@ -1,3 +1,4 @@
1
+ build>=1.5.0
1
2
  pymodbus<3.15,>=3.14
2
3
  rich<15,>=13
3
4
  typer<1,>=0.12
File without changes
File without changes