From 06296413a53b6d3adea9a9d934eb2b801e3cf0a7 Mon Sep 17 00:00:00 2001 From: Patrick762 Date: Mon, 22 May 2023 19:36:35 +0200 Subject: [PATCH] fixed pip install error --- README.md | 2 +- setup.py | 3 +-- streamdeckapi/const.py | 2 -- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2e3d885..34153ff 100644 --- a/README.md +++ b/README.md @@ -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: -- 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) The event `doubleTap` is not working with this server software. diff --git a/setup.py b/setup.py index 593e81b..bfd1227 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,12 @@ from setuptools import setup, find_packages import codecs import os -from streamdeckapi.const import VERSION - here = os.path.abspath(os.path.dirname(__file__)) with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: long_description = "\n" + fh.read() +VERSION = "0.0.3" DESCRIPTION = "Stream Deck API Library" # Setting up diff --git a/streamdeckapi/const.py b/streamdeckapi/const.py index 7a34eec..98f75b3 100644 --- a/streamdeckapi/const.py +++ b/streamdeckapi/const.py @@ -1,7 +1,5 @@ """Stream Deck API const.""" -VERSION = '0.0.3' - PLUGIN_PORT = 6153 PLUGIN_INFO = "/sd/info" PLUGIN_ICON = "/sd/icon"