From ddee4f7e3e7accb7729893b47e7b7b7fe6a81314 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Wed, 26 Oct 2022 11:35:16 +0100 Subject: [PATCH] add setup.py to hotkeys example --- examples/hotkeys/setup.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/hotkeys/setup.py diff --git a/examples/hotkeys/setup.py b/examples/hotkeys/setup.py new file mode 100644 index 0000000..06a1afe --- /dev/null +++ b/examples/hotkeys/setup.py @@ -0,0 +1,7 @@ +from setuptools import setup + +setup( + name="hotkeys", + description="hotkeys example", + install_requires=["obsws-python", "keyboard"], +)