From 99611aa1bcfcbab12671cba43add50eff60c9fda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Wed, 17 Mar 2021 22:19:05 -0700 Subject: [PATCH] setup.py: add yaml dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the only external dependency, which will be installed when you 'pip3 install devicetree'. Signed-off-by: Martí Bolívar --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6765d4f..46b740a 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,8 @@ setuptools.setup( 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', ], - install_requires=[], + install_requires=[ + 'PyYAML>=5.1', + ], python_requires='>=3.6', )