pycomap 1.0.0__tar.gz → 1.0.1__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.
- {pycomap-1.0.0 → pycomap-1.0.1}/PKG-INFO +18 -3
- {pycomap-1.0.0 → pycomap-1.0.1}/README.md +1 -1
- {pycomap-1.0.0 → pycomap-1.0.1}/pyproject.toml +23 -4
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/__init__.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/alarms.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/configuration.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/controller.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/datatypes.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/discovery.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/exceptions.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/history.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/__init__.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/client.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/commands.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/crc.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/crypto.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/framing.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/objects.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/protocol/transport.py +0 -0
- {pycomap-1.0.0 → pycomap-1.0.1}/src/pycomap/py.typed +0 -0
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pycomap
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Async Python client for ComAp controllers: LAN discovery and the native ECDH/AES-encrypted control protocol
|
|
5
5
|
Author: Igor Panteleyev
|
|
6
6
|
Author-email: Igor Panteleyev <panteleev.igor69@gmail.com>
|
|
7
7
|
License-Expression: MIT
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
|
+
Classifier: Topic :: Home Automation
|
|
15
|
+
Classifier: Topic :: System :: Hardware
|
|
16
|
+
Classifier: Framework :: AsyncIO
|
|
17
|
+
Classifier: Typing :: Typed
|
|
8
18
|
Requires-Dist: cryptography>=42
|
|
9
19
|
Requires-Dist: pytz>=2026.2
|
|
10
|
-
Requires-Python: >=3.
|
|
20
|
+
Requires-Python: >=3.14
|
|
21
|
+
Project-URL: Homepage, https://github.com/igor-panteleev/pycomap
|
|
22
|
+
Project-URL: Documentation, https://igor-panteleev.github.io/pycomap/
|
|
23
|
+
Project-URL: Source, https://github.com/igor-panteleev/pycomap
|
|
24
|
+
Project-URL: Issues, https://github.com/igor-panteleev/pycomap/issues
|
|
25
|
+
Project-URL: Changelog, https://github.com/igor-panteleev/pycomap/releases
|
|
11
26
|
Description-Content-Type: text/markdown
|
|
12
27
|
|
|
13
28
|
# pycomap
|
|
@@ -37,7 +52,7 @@ async with Controller(
|
|
|
37
52
|
await ctrl.set_setpoint("Summer Time Mode", "Winter") # STRING_LIST by label
|
|
38
53
|
```
|
|
39
54
|
|
|
40
|
-
See the [API docs](
|
|
55
|
+
See the [API docs](https://igor-panteleev.github.io/pycomap/) for full reference. `just docs-serve` to browse locally.
|
|
41
56
|
|
|
42
57
|
## Development
|
|
43
58
|
|
|
@@ -25,7 +25,7 @@ async with Controller(
|
|
|
25
25
|
await ctrl.set_setpoint("Summer Time Mode", "Winter") # STRING_LIST by label
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
See the [API docs](
|
|
28
|
+
See the [API docs](https://igor-panteleev.github.io/pycomap/) for full reference. `just docs-serve` to browse locally.
|
|
29
29
|
|
|
30
30
|
## Development
|
|
31
31
|
|
|
@@ -1,17 +1,36 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pycomap"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.1"
|
|
4
4
|
description = "Async Python client for ComAp controllers: LAN discovery and the native ECDH/AES-encrypted control protocol"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
7
7
|
authors = [
|
|
8
8
|
{ name = "Igor Panteleyev", email = "panteleev.igor69@gmail.com" }
|
|
9
9
|
]
|
|
10
|
-
requires-python = ">=3.
|
|
10
|
+
requires-python = ">=3.14"
|
|
11
11
|
dependencies = [
|
|
12
12
|
"cryptography>=42",
|
|
13
13
|
"pytz>=2026.2",
|
|
14
14
|
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 4 - Beta",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
22
|
+
"Topic :: Home Automation",
|
|
23
|
+
"Topic :: System :: Hardware",
|
|
24
|
+
"Framework :: AsyncIO",
|
|
25
|
+
"Typing :: Typed",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://github.com/igor-panteleev/pycomap"
|
|
30
|
+
Documentation = "https://igor-panteleev.github.io/pycomap/"
|
|
31
|
+
Source = "https://github.com/igor-panteleev/pycomap"
|
|
32
|
+
Issues = "https://github.com/igor-panteleev/pycomap/issues"
|
|
33
|
+
Changelog = "https://github.com/igor-panteleev/pycomap/releases"
|
|
15
34
|
|
|
16
35
|
[build-system]
|
|
17
36
|
requires = ["uv_build>=0.9.26,<0.10.0"]
|
|
@@ -49,7 +68,7 @@ omit = ["tests/*"]
|
|
|
49
68
|
|
|
50
69
|
[tool.ruff]
|
|
51
70
|
line-length = 100
|
|
52
|
-
target-version = "
|
|
71
|
+
target-version = "py314"
|
|
53
72
|
|
|
54
73
|
[tool.ruff.lint]
|
|
55
74
|
select = [
|
|
@@ -67,7 +86,7 @@ select = [
|
|
|
67
86
|
known-first-party = ["pycomap"]
|
|
68
87
|
|
|
69
88
|
[tool.ty.environment]
|
|
70
|
-
python-version = "3.
|
|
89
|
+
python-version = "3.14"
|
|
71
90
|
|
|
72
91
|
[tool.uv]
|
|
73
92
|
publish-url = "https://upload.pypi.org/legacy/"
|
|
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
|