Skip to content

Commit 322de2a

Browse files
authored
Merge pull request #17 from gri-gus/1.2.1
1.2.1
2 parents c4efa55 + 600d83d commit 322de2a

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

README-PYPI.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@ Library for creating Stream Deck plugins in Python.
4646
pip install "streamdeck-sdk[dev]"
4747
```
4848

49+
During this installation, additional libraries needed for development are installed:
50+
51+
* [streamdeck-sdk-pi](https://pypi.org/project/streamdeck-sdk-pi) - Property Inspector generator in Python
52+
53+
* [streamdeck-sdk-cli](https://pypi.org/project/streamdeck-sdk-cli) - useful command line utilities
54+
55+
> ⚠️ These libraries should not be present in the plugin's `requirements.txt`.
56+
4957
## Features
5058

5159
* Ease of use. You can quickly create your own plugin without having to understand how websockets and

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ Library for creating Stream Deck plugins in Python.
5353
pip install "streamdeck-sdk[dev]"
5454
```
5555

56+
During this installation, additional libraries needed for development are installed:
57+
58+
* [streamdeck-sdk-pi](https://pypi.org/project/streamdeck-sdk-pi) - Property Inspector generator in Python
59+
60+
* [streamdeck-sdk-cli](https://pypi.org/project/streamdeck-sdk-cli) - useful command line utilities
61+
62+
> ⚠️ These libraries should not be present in the plugin's `requirements.txt`.
63+
5664
## Features
5765

5866
* Ease of use. You can quickly create your own plugin without having to understand how websockets and

README.ru.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@
5353
pip install "streamdeck-sdk[dev]"
5454
```
5555

56+
Во время такой установки дополнительно устанавливаются библиотеки, нужные для разработки:
57+
58+
* [streamdeck-sdk-pi](https://pypi.org/project/streamdeck-sdk-pi) - генератор Property Inspector на Python
59+
60+
* [streamdeck-sdk-cli](https://pypi.org/project/streamdeck-sdk-cli) - полезные утилиты командной строки
61+
62+
> ⚠️ Эти библиотеки не должны присутствовать в `requirements.txt` плагина.
63+
5664
## Возможности
5765

5866
* Простота использования. Вы можете быстро создать свой собственный плагин, не разбираясь в том,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "streamdeck_sdk"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
authors = [
99
{ name = "Grigoriy Gusev", email = "thegrigus@gmail.com" },
1010
]
@@ -47,7 +47,7 @@ classifiers = [
4747

4848
[project.optional-dependencies]
4949
dev = [
50-
"streamdeck-sdk-cli>=0.0.1,<0.1.0",
50+
"streamdeck-sdk-cli>=0.0.2,<0.1.0",
5151
"streamdeck-sdk-pi>=0.0.1,<0.1.0",
5252
]
5353

0 commit comments

Comments
 (0)