Add install_requires in setup.py

The necessary dependencies should also be defined in the setup.py file,
so that they are automatically installed by `pip`.

Signed-off-by: Claudius Heine <ch@denx.de>
This commit is contained in:
Claudius Heine 2017-06-22 13:17:02 +02:00 committed by Daniel Wagner
parent a618ea95bd
commit 58b5014345

View File

@ -73,4 +73,9 @@ setup(
'kas=kas.kas:main',
],
},
install_requires=[
'PyYAML>=3.0',
'distro>=1.0.0',
],
)