forked from voiceflow/rpi-voice-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name="dialogbank",
version="0.1.0",
packages=find_packages(),
license="MIT",
long_description="Dialogbank application",
install_requires=[
"google-cloud>=0.34.0",
"google-cloud-speech>=2.0.1",
"PyAudio>=0.2.11",
"gTTS>=2.2.2",
"playsound>=1.2.2",
"structlog>=21.1.0",
"python-dotenv>=1.0.1",
"requests>=2.31.0",
# grpcio is a transitive dependency of google-cloud-speech. grpcio is a Cython
# package and not installing it explicitly causes problems when packaging for Debian
# for some reason. I haven’t found out why exactly so far.
"grpcio>=1.49.1,<2.0dev",
"pytimedinput>=2.0.1",
"rpi-lgpio>=0.4",
"blinkt>=0.1.2",
],
include_package_data=True,
package_data={
"dialogbank": ["assets/*.wav"],
},
entry_points={
"console_scripts": [
"dbank = dialogbank.main:main",
],
},
)