From 58b50143457a38e37d6468541552658bebf0db0e Mon Sep 17 00:00:00 2001 From: Claudius Heine Date: Thu, 22 Jun 2017 13:17:02 +0200 Subject: [PATCH] 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 --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index f3a8de5..93d9fb5 100644 --- a/setup.py +++ b/setup.py @@ -73,4 +73,9 @@ setup( 'kas=kas.kas:main', ], }, + + install_requires=[ + 'PyYAML>=3.0', + 'distro>=1.0.0', + ], )