uns-kit 0.0.2__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uns-kit
3
- Version: 0.0.2
3
+ Version: 0.0.3
4
4
  Summary: Lightweight Python UNS MQTT client (pub/sub + infra topics)
5
5
  License: MIT
6
6
  Author: Aljoša Vister
@@ -32,11 +32,11 @@ poetry install
32
32
  ```
33
33
 
34
34
  ## CLI
35
- After `poetry install`, a `uns-kit` command is available:
35
+ After `poetry install`, an `uns-kit-py` command is available (renamed to avoid clashing with the Node CLI):
36
36
  ```bash
37
- poetry run uns-kit publish --host localhost:1883 --topic raw/data/ --value 1
38
- poetry run uns-kit subscribe --host localhost:1883 --topic 'uns-infra/#'
39
- poetry run uns-kit write-config --path config.json
37
+ poetry run uns-kit-py publish --host localhost:1883 --topic raw/data/ --value 1
38
+ poetry run uns-kit-py subscribe --host localhost:1883 --topic 'uns-infra/#'
39
+ poetry run uns-kit-py write-config --path config.json
40
40
  ```
41
41
 
42
42
  ## Quick start
@@ -13,11 +13,11 @@ poetry install
13
13
  ```
14
14
 
15
15
  ## CLI
16
- After `poetry install`, a `uns-kit` command is available:
16
+ After `poetry install`, an `uns-kit-py` command is available (renamed to avoid clashing with the Node CLI):
17
17
  ```bash
18
- poetry run uns-kit publish --host localhost:1883 --topic raw/data/ --value 1
19
- poetry run uns-kit subscribe --host localhost:1883 --topic 'uns-infra/#'
20
- poetry run uns-kit write-config --path config.json
18
+ poetry run uns-kit-py publish --host localhost:1883 --topic raw/data/ --value 1
19
+ poetry run uns-kit-py subscribe --host localhost:1883 --topic 'uns-infra/#'
20
+ poetry run uns-kit-py write-config --path config.json
21
21
  ```
22
22
 
23
23
  ## Quick start
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "uns-kit"
3
- version = "0.0.2"
3
+ version = "0.0.3"
4
4
  description = "Lightweight Python UNS MQTT client (pub/sub + infra topics)"
5
5
  authors = ["Aljoša Vister <aljosa.vister@gmail.com>"]
6
6
  license = "MIT"
@@ -19,7 +19,7 @@ ruff = "^0.6.9"
19
19
  mypy = "^1.11.2"
20
20
 
21
21
  [tool.poetry.scripts]
22
- uns-kit = "uns_kit.cli:main"
22
+ uns-kit-py = "uns_kit.cli:main"
23
23
 
24
24
  [build-system]
25
25
  requires = ["poetry-core"]
File without changes
File without changes
File without changes
File without changes
File without changes