diff --git a/README-PYPI.md b/README-PYPI.md index 41676b7..410c983 100644 --- a/README-PYPI.md +++ b/README-PYPI.md @@ -43,7 +43,7 @@ Library for creating Stream Deck plugins in Python. > Without this setting, problems with installation and use may occur! ```shell -pip install streamdeck-sdk[dev] +pip install "streamdeck-sdk[dev]" ``` ## Features diff --git a/README.md b/README.md index 3453c5f..0d0a862 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Library for creating Stream Deck plugins in Python. > Without this setting, problems with installation and use may occur! ```shell -pip install streamdeck-sdk[dev] +pip install "streamdeck-sdk[dev]" ``` ## Features @@ -224,6 +224,8 @@ Instead of `"com.ggusev.keyboard.write"` you need to substitute the name of your ## Property Inspector Generator +[streamdeck-python-sdk-pi](https://github.com/gri-gus/streamdeck-python-sdk-pi) + With this tool you can quickly write your Property Inspector in Python. HTML and JS code will be generated. diff --git a/README.ru.md b/README.ru.md index 1e5d8db..66896dc 100644 --- a/README.ru.md +++ b/README.ru.md @@ -50,7 +50,7 @@ > Без этой настройки возможны проблемы с установкой и использованием! ```shell -pip install streamdeck-sdk[dev] +pip install "streamdeck-sdk[dev]" ``` ## Возможности @@ -224,6 +224,8 @@ $PI.onSendToPropertyInspector("com.ggusev.keyboard.write", jsn => { ## Генератор Property Inspector +[streamdeck-python-sdk-pi](https://github.com/gri-gus/streamdeck-python-sdk-pi) + С помощью этого инструмента вы можете быстро писать свой Property Inspector на Python. Код на html и js будет сгенерирован. diff --git a/pyproject.toml b/pyproject.toml index 3d5d4be..a9cecc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "streamdeck_sdk" -version = "1.2.0.dev8" +version = "1.2.0" authors = [ { name = "Grigoriy Gusev", email = "thegrigus@gmail.com" }, ] @@ -47,8 +47,8 @@ classifiers = [ [project.optional-dependencies] dev = [ - "streamdeck-sdk-cli>=0.0.1.dev6,<0.0.2", - "streamdeck-sdk-pi>=0.0.1.dev1,<0.0.2", + "streamdeck-sdk-cli>=0.0.1,<0.1.0", + "streamdeck-sdk-pi>=0.0.1,<0.1.0", ] [project.urls]