# setup.py from setuptools import setup, find_packages setup( name="whisper-dictate", version="0.1.0", py_modules=["whisper_dictate_daemon"], entry_points={ "console_scripts": [ "whisper-dictate-daemon=whisper_dictate_daemon:main", ], }, install_requires=[ "PyGObject", "openai-whisper", ], )