From 600d83dce2081a95597a7be708aff76a20326c26 Mon Sep 17 00:00:00 2001 From: Grigoriy Gusev Date: Tue, 24 Sep 2024 17:53:10 +0300 Subject: [PATCH] Updated version of streamdeck-sdk-cli; Added information about additional libraries in README; --- README-PYPI.md | 8 ++++++++ README.md | 8 ++++++++ README.ru.md | 8 ++++++++ pyproject.toml | 4 ++-- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/README-PYPI.md b/README-PYPI.md index 410c983..66ec0bc 100644 --- a/README-PYPI.md +++ b/README-PYPI.md @@ -46,6 +46,14 @@ Library for creating Stream Deck plugins in Python. pip install "streamdeck-sdk[dev]" ``` +During this installation, additional libraries needed for development are installed: + +* [streamdeck-sdk-pi](https://pypi.org/project/streamdeck-sdk-pi) - Property Inspector generator in Python + +* [streamdeck-sdk-cli](https://pypi.org/project/streamdeck-sdk-cli) - useful command line utilities + +> ⚠️ These libraries should not be present in the plugin's `requirements.txt`. + ## Features * Ease of use. You can quickly create your own plugin without having to understand how websockets and diff --git a/README.md b/README.md index fbd985f..01c8779 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,14 @@ Library for creating Stream Deck plugins in Python. pip install "streamdeck-sdk[dev]" ``` +During this installation, additional libraries needed for development are installed: + +* [streamdeck-sdk-pi](https://pypi.org/project/streamdeck-sdk-pi) - Property Inspector generator in Python + +* [streamdeck-sdk-cli](https://pypi.org/project/streamdeck-sdk-cli) - useful command line utilities + +> ⚠️ These libraries should not be present in the plugin's `requirements.txt`. + ## Features * Ease of use. You can quickly create your own plugin without having to understand how websockets and diff --git a/README.ru.md b/README.ru.md index e409742..95b6d66 100644 --- a/README.ru.md +++ b/README.ru.md @@ -53,6 +53,14 @@ pip install "streamdeck-sdk[dev]" ``` +Во время такой установки дополнительно устанавливаются библиотеки, нужные для разработки: + +* [streamdeck-sdk-pi](https://pypi.org/project/streamdeck-sdk-pi) - генератор Property Inspector на Python + +* [streamdeck-sdk-cli](https://pypi.org/project/streamdeck-sdk-cli) - полезные утилиты командной строки + +> ⚠️ Эти библиотеки не должны присутствовать в `requirements.txt` плагина. + ## Возможности * Простота использования. Вы можете быстро создать свой собственный плагин, не разбираясь в том, diff --git a/pyproject.toml b/pyproject.toml index a9cecc4..27182d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "streamdeck_sdk" -version = "1.2.0" +version = "1.2.1" authors = [ { name = "Grigoriy Gusev", email = "thegrigus@gmail.com" }, ] @@ -47,7 +47,7 @@ classifiers = [ [project.optional-dependencies] dev = [ - "streamdeck-sdk-cli>=0.0.1,<0.1.0", + "streamdeck-sdk-cli>=0.0.2,<0.1.0", "streamdeck-sdk-pi>=0.0.1,<0.1.0", ]