setup.py: Add install_requires argument

To install dependent packages automatically, add install_requires
argument to setup() function.

Signed-off-by: Shin'ichiro Kawasaki <kawasaki@juno.dti.ne.jp>
This commit is contained in:
Shin'ichiro Kawasaki
2020-10-23 12:58:53 +09:00
parent bcd55cad00
commit 7be5a725fa

View File

@@ -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',