From 07425bb5e71a19643170f59d2ddb39cca7ae6008 Mon Sep 17 00:00:00 2001 From: marcsello Date: Wed, 30 Sep 2020 04:27:45 +0200 Subject: [PATCH] Fixed missing dependency --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 65ab6ac..784a78a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages with open('README.md') as readme_file: readme = readme_file.read() -requirements = ['RPi.GPIO', 'pyalsaaudio'] +requirements = ['RPi.GPIO', 'pyalsaaudio', 'playsound'] setup_requirements = ['pytest-runner', ]