fixed pip install error

This commit is contained in:
Patrick762
2023-05-22 19:36:35 +02:00
parent 5ab848f2d5
commit 06296413a5
3 changed files with 2 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ This library also contains a server to use the streamdeck with Linux or without
For this to work, the following software is required: For this to work, the following software is required:
- LibUSB HIDAPI [Installation instructions](https://python-elgato-streamdeck.readthedocs.io/en/stable/pages/backend_libusb_hidapi.html) - LibUSB HIDAPI [Installation instructions](https://python-elgato-streamdeck.readthedocs.io/en/stable/pages/backend_libusb_hidapi.html) or [Installation instructions](https://github.com/jamesridgway/devdeck/wiki/Installation)
- cairo [Installation instructions for Windows](https://stackoverflow.com/a/73913080) - cairo [Installation instructions for Windows](https://stackoverflow.com/a/73913080)
The event `doubleTap` is not working with this server software. The event `doubleTap` is not working with this server software.

View File

@@ -2,13 +2,12 @@ from setuptools import setup, find_packages
import codecs import codecs
import os import os
from streamdeckapi.const import VERSION
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read() long_description = "\n" + fh.read()
VERSION = "0.0.3"
DESCRIPTION = "Stream Deck API Library" DESCRIPTION = "Stream Deck API Library"
# Setting up # Setting up

View File

@@ -1,7 +1,5 @@
"""Stream Deck API const.""" """Stream Deck API const."""
VERSION = '0.0.3'
PLUGIN_PORT = 6153 PLUGIN_PORT = 6153
PLUGIN_INFO = "/sd/info" PLUGIN_INFO = "/sd/info"
PLUGIN_ICON = "/sd/icon" PLUGIN_ICON = "/sd/icon"