python-snap7 2.0.1__tar.gz → 2.0.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 (35) hide show
  1. {python_snap7-2.0.1/python_snap7.egg-info → python_snap7-2.0.2}/PKG-INFO +1 -2
  2. {python_snap7-2.0.1 → python_snap7-2.0.2}/pyproject.toml +2 -2
  3. {python_snap7-2.0.1 → python_snap7-2.0.2/python_snap7.egg-info}/PKG-INFO +1 -2
  4. {python_snap7-2.0.1 → python_snap7-2.0.2}/python_snap7.egg-info/requires.txt +0 -1
  5. {python_snap7-2.0.1 → python_snap7-2.0.2}/LICENSE +0 -0
  6. {python_snap7-2.0.1 → python_snap7-2.0.2}/MANIFEST.in +0 -0
  7. {python_snap7-2.0.1 → python_snap7-2.0.2}/README.rst +0 -0
  8. {python_snap7-2.0.1 → python_snap7-2.0.2}/python_snap7.egg-info/SOURCES.txt +0 -0
  9. {python_snap7-2.0.1 → python_snap7-2.0.2}/python_snap7.egg-info/dependency_links.txt +0 -0
  10. {python_snap7-2.0.1 → python_snap7-2.0.2}/python_snap7.egg-info/entry_points.txt +0 -0
  11. {python_snap7-2.0.1 → python_snap7-2.0.2}/python_snap7.egg-info/top_level.txt +0 -0
  12. {python_snap7-2.0.1 → python_snap7-2.0.2}/setup.cfg +0 -0
  13. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/__init__.py +0 -0
  14. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/client.py +0 -0
  15. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/common.py +0 -0
  16. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/error.py +0 -0
  17. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/logo.py +0 -0
  18. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/partner.py +0 -0
  19. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/protocol.py +0 -0
  20. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/protocol.pyi +0 -0
  21. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/py.typed +0 -0
  22. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/server/__init__.py +0 -0
  23. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/server/__main__.py +0 -0
  24. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/type.py +0 -0
  25. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/util/__init__.py +0 -0
  26. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/util/db.py +0 -0
  27. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/util/getters.py +0 -0
  28. {python_snap7-2.0.1 → python_snap7-2.0.2}/snap7/util/setters.py +0 -0
  29. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_client.py +0 -0
  30. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_common.py +0 -0
  31. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_logo_client.py +0 -0
  32. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_mainloop.py +0 -0
  33. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_partner.py +0 -0
  34. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_server.py +0 -0
  35. {python_snap7-2.0.1 → python_snap7-2.0.2}/tests/test_util.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-snap7
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: Python wrapper for the snap7 library
5
5
  Author-email: Gijs Molenaar <gijsmolenaar@gmail.com>
6
6
  License: MIT License
@@ -36,7 +36,6 @@ Requires-Dist: click; extra == "cli"
36
36
  Provides-Extra: doc
37
37
  Requires-Dist: sphinx; extra == "doc"
38
38
  Requires-Dist: sphinx_rtd_theme; extra == "doc"
39
- Requires-Dist: enum-tools[sphinx]; extra == "doc"
40
39
 
41
40
  About
42
41
  =====
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-snap7"
7
- version = "2.0.1"
7
+ version = "2.0.2"
8
8
  description = "Python wrapper for the snap7 library"
9
9
  readme = "README.rst"
10
10
  authors = [
@@ -35,7 +35,7 @@ Documentation = "https://python-snap7.readthedocs.io/en/latest/"
35
35
  [project.optional-dependencies]
36
36
  test = ["pytest", "mypy", "types-setuptools", "ruff", "tox", "types-click", "uv"]
37
37
  cli = ["rich", "click" ]
38
- doc = ["sphinx", "sphinx_rtd_theme", "enum-tools[sphinx]"]
38
+ doc = ["sphinx", "sphinx_rtd_theme"]
39
39
 
40
40
  [tool.setuptools.package-data]
41
41
  snap7 = ["py.typed", "lib/libsnap7.so", "lib/snap7.dll", "lib/libsnap7.dylib"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-snap7
3
- Version: 2.0.1
3
+ Version: 2.0.2
4
4
  Summary: Python wrapper for the snap7 library
5
5
  Author-email: Gijs Molenaar <gijsmolenaar@gmail.com>
6
6
  License: MIT License
@@ -36,7 +36,6 @@ Requires-Dist: click; extra == "cli"
36
36
  Provides-Extra: doc
37
37
  Requires-Dist: sphinx; extra == "doc"
38
38
  Requires-Dist: sphinx_rtd_theme; extra == "doc"
39
- Requires-Dist: enum-tools[sphinx]; extra == "doc"
40
39
 
41
40
  About
42
41
  =====
@@ -6,7 +6,6 @@ click
6
6
  [doc]
7
7
  sphinx
8
8
  sphinx_rtd_theme
9
- enum-tools[sphinx]
10
9
 
11
10
  [test]
12
11
  pytest
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes