pysmarlaapi 0.4.3__tar.gz → 0.4.4__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 (25) hide show
  1. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/PKG-INFO +1 -2
  2. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pyproject.toml +7 -10
  3. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/__init__.py +1 -1
  4. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/.gitignore +0 -0
  5. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/.pre-commit-config.yaml +0 -0
  6. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/.pypirc +0 -0
  7. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/.vscode/launch.json +0 -0
  8. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/.vscode/settings.json +0 -0
  9. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/LICENSE +0 -0
  10. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/README.md +0 -0
  11. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/classes/__init__.py +0 -0
  12. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/classes/auth_token.py +0 -0
  13. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/classes/connection.py +0 -0
  14. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/connection_hub/__init__.py +0 -0
  15. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/__init__.py +0 -0
  16. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/classes/__init__.py +0 -0
  17. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/classes/property.py +0 -0
  18. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/classes/service.py +0 -0
  19. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/services/__init__.py +0 -0
  20. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/services/analyser_service.py +0 -0
  21. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/services/babywiege_service.py +0 -0
  22. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/pysmarlaapi/federwiege/services/info_service.py +0 -0
  23. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/requirements.txt +0 -0
  24. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/requirements_dev.txt +0 -0
  25. {pysmarlaapi-0.4.3 → pysmarlaapi-0.4.4}/tests/test.py +0 -0
@@ -1,9 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysmarlaapi
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Summary: Swing2Sleep Smarla API
5
5
  Author-email: Robin Lintermann <robin.lintermann@explicatis.com>
6
- Maintainer-email: Robin Lintermann <robin.lintermann@explicatis.com>
7
6
  Requires-Python: >=3.11.9
8
7
  Description-Content-Type: text/markdown
9
8
  License-Expression: Apache-2.0
@@ -7,16 +7,6 @@ name = "pysmarlaapi"
7
7
  authors = [
8
8
  {name = "Robin Lintermann", email = "robin.lintermann@explicatis.com"},
9
9
  ]
10
- maintainers = [
11
- {name = "Robin Lintermann", email = "robin.lintermann@explicatis.com"},
12
- ]
13
- dependencies = [
14
- "aiohttp~=3.11.11",
15
- "jsonpickle~=4.0.0",
16
- "pysignalr~=1.1.0",
17
- ]
18
- description = "Swing2Sleep Smarla API"
19
- readme = "README.md"
20
10
  classifiers = [
21
11
  "Development Status :: 4 - Beta",
22
12
  "Programming Language :: Python :: 3",
@@ -24,7 +14,14 @@ classifiers = [
24
14
  "Programming Language :: Python :: 3.12",
25
15
  "Programming Language :: Python :: 3.13",
26
16
  ]
17
+ dependencies = [
18
+ "aiohttp~=3.11.11",
19
+ "jsonpickle~=4.0.0",
20
+ "pysignalr~=1.1.0",
21
+ ]
22
+ description = "Swing2Sleep Smarla API"
27
23
  license = "Apache-2.0"
24
+ readme = "README.md"
28
25
  requires-python = ">=3.11.9"
29
26
  dynamic = ["version"]
30
27
 
@@ -1,4 +1,4 @@
1
- __version__ = "0.4.3"
1
+ __version__ = "0.4.4"
2
2
 
3
3
  from .classes import Connection
4
4
  from .federwiege import Federwiege
File without changes
File without changes
File without changes
File without changes
File without changes