blob: 516c0ca234add640ce418f117d2a5892f30f6b03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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",
],
)
|