From 7be5a725fa4e896f1da47d4a36a6c5fc8d6122a7 Mon Sep 17 00:00:00 2001 From: Shin'ichiro Kawasaki Date: Fri, 23 Oct 2020 12:58:53 +0900 Subject: [PATCH] setup.py: Add install_requires argument To install dependent packages automatically, add install_requires argument to setup() function. Signed-off-by: Shin'ichiro Kawasaki --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index dbf1120..6379501 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,12 @@ setuptools.setup( "Operating System :: POSIX :: Linux", ], python_requires='>=3.6', + install_requires=[ + 'websockets', + 'bluepy', + 'pybluez', + 'pyOpenSSL', + ], entry_points={ 'console_scripts': [ 'scratch_link = pyscrlink.scratch_link:main',