python-linkplay 0.0.4__tar.gz → 0.0.5__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. {python_linkplay-0.0.4/src/python_linkplay.egg-info → python_linkplay-0.0.5}/PKG-INFO +4 -4
  2. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/setup.cfg +3 -3
  3. python_linkplay-0.0.5/src/linkplay/__version__.py +1 -0
  4. {python_linkplay-0.0.4 → python_linkplay-0.0.5/src/python_linkplay.egg-info}/PKG-INFO +4 -4
  5. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/python_linkplay.egg-info/requires.txt +3 -3
  6. python_linkplay-0.0.4/src/linkplay/__version__.py +0 -1
  7. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/LICENSE +0 -0
  8. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/README.md +0 -0
  9. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/pyproject.toml +0 -0
  10. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/setup.py +0 -0
  11. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/__init__.py +0 -0
  12. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/__main__.py +0 -0
  13. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/bridge.py +0 -0
  14. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/consts.py +0 -0
  15. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/controller.py +0 -0
  16. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/discovery.py +0 -0
  17. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/exceptions.py +0 -0
  18. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/linkplay/utils.py +0 -0
  19. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/python_linkplay.egg-info/SOURCES.txt +0 -0
  20. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/python_linkplay.egg-info/dependency_links.txt +0 -0
  21. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/python_linkplay.egg-info/not-zip-safe +0 -0
  22. {python_linkplay-0.0.4 → python_linkplay-0.0.5}/src/python_linkplay.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python_linkplay
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: A Python Library for Seamless LinkPlay Device Control
5
5
  Author: Velleman Group nv
6
6
  License: MIT
@@ -8,9 +8,9 @@ Classifier: Programming Language :: Python :: 3
8
8
  Requires-Python: >=3.11
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
- Requires-Dist: async-timeout==4.0.3
12
- Requires-Dist: aiohttp==3.9.1
13
- Requires-Dist: async_upnp_client==0.38.0
11
+ Requires-Dist: async-timeout>=4.0.3
12
+ Requires-Dist: aiohttp>=3.8.5
13
+ Requires-Dist: async_upnp_client>=0.36.2
14
14
  Provides-Extra: testing
15
15
  Requires-Dist: pytest>=7.3.1; extra == "testing"
16
16
  Requires-Dist: pytest-cov>=4.1.0; extra == "testing"
@@ -12,9 +12,9 @@ classifiers =
12
12
  [options]
13
13
  packages = find_namespace:
14
14
  install_requires =
15
- async-timeout==4.0.3
16
- aiohttp==3.9.1
17
- async_upnp_client==0.38.0
15
+ async-timeout>=4.0.3
16
+ aiohttp>=3.8.5
17
+ async_upnp_client>=0.36.2
18
18
  python_requires = >=3.11
19
19
  package_dir =
20
20
  =src
@@ -0,0 +1 @@
1
+ __version__ = '0.0.5'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python_linkplay
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: A Python Library for Seamless LinkPlay Device Control
5
5
  Author: Velleman Group nv
6
6
  License: MIT
@@ -8,9 +8,9 @@ Classifier: Programming Language :: Python :: 3
8
8
  Requires-Python: >=3.11
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
- Requires-Dist: async-timeout==4.0.3
12
- Requires-Dist: aiohttp==3.9.1
13
- Requires-Dist: async_upnp_client==0.38.0
11
+ Requires-Dist: async-timeout>=4.0.3
12
+ Requires-Dist: aiohttp>=3.8.5
13
+ Requires-Dist: async_upnp_client>=0.36.2
14
14
  Provides-Extra: testing
15
15
  Requires-Dist: pytest>=7.3.1; extra == "testing"
16
16
  Requires-Dist: pytest-cov>=4.1.0; extra == "testing"
@@ -1,6 +1,6 @@
1
- async-timeout==4.0.3
2
- aiohttp==3.9.1
3
- async_upnp_client==0.38.0
1
+ async-timeout>=4.0.3
2
+ aiohttp>=3.8.5
3
+ async_upnp_client>=0.36.2
4
4
 
5
5
  [testing]
6
6
  pytest>=7.3.1
@@ -1 +0,0 @@
1
- __version__ = '0.0.4'
File without changes