File tree Expand file tree Collapse file tree 4 files changed +26
-2
lines changed Expand file tree Collapse file tree 4 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,14 @@ Library for creating Stream Deck plugins in Python.
46
46
pip install " streamdeck-sdk[dev]"
47
47
```
48
48
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
+
49
57
## Features
50
58
51
59
* Ease of use. You can quickly create your own plugin without having to understand how websockets and
Original file line number Diff line number Diff line change @@ -53,6 +53,14 @@ Library for creating Stream Deck plugins in Python.
53
53
pip install " streamdeck-sdk[dev]"
54
54
```
55
55
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
+
56
64
## Features
57
65
58
66
* Ease of use. You can quickly create your own plugin without having to understand how websockets and
Original file line number Diff line number Diff line change 53
53
pip install " streamdeck-sdk[dev]"
54
54
```
55
55
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
+
56
64
## Возможности
57
65
58
66
* Простота использования. Вы можете быстро создать свой собственный плагин, не разбираясь в том,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " streamdeck_sdk"
7
- version = " 1.2.0 "
7
+ version = " 1.2.1 "
8
8
authors = [
9
9
{ name = " Grigoriy Gusev" , email = " thegrigus@gmail.com" },
10
10
]
@@ -47,7 +47,7 @@ classifiers = [
47
47
48
48
[project .optional-dependencies ]
49
49
dev = [
50
- " streamdeck-sdk-cli>=0.0.1 ,<0.1.0" ,
50
+ " streamdeck-sdk-cli>=0.0.2 ,<0.1.0" ,
51
51
" streamdeck-sdk-pi>=0.0.1,<0.1.0" ,
52
52
]
53
53
You can’t perform that action at this time.
0 commit comments