Compare commits

...

2 Commits

Author SHA1 Message Date
Onyx and Iris
917352772f move entry point into subpackage
add project.scripts entrypoint
2025-02-01 10:04:01 +00:00
Onyx and Iris
e2be80fc4b bump vban-cmd dep 2025-02-01 09:41:42 +00:00
3 changed files with 6 additions and 6 deletions

View File

@ -0,0 +1 @@
from .duckypad import run

View File

@ -57,7 +57,7 @@ def register_hotkeys(duckypad):
step()
def main():
def run():
xair_config = configuration.get('xair')
with voicemeeterlib.api('potato') as vm:
@ -69,7 +69,3 @@ def main():
print('press ctrl+m to quit')
keyboard.wait('ctrl+m')
if __name__ == '__main__':
main()

View File

@ -32,9 +32,12 @@ dependencies = [
"xair-api>=2.4.1",
"slobs_websocket@git+https://git@github.com/onyx-and-iris/slobs_websocket@v0.1.4#egg=slobs_websocket",
"obsws-python>=1.7.0",
"vban-cmd>=2.5.1",
"vban-cmd>=2.5.2",
]
[project.scripts]
duckypad-cli = "duckypad_twitch.cli:run"
[project.urls]
Documentation = "https://github.com/unknown/duckypad-twitch#readme"
Issues = "https://github.com/unknown/duckypad-twitch/issues"