setup.py: add yaml dependency

This is the only external dependency, which will be installed when you
'pip3 install devicetree'.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2021-03-17 22:19:05 -07:00
parent c294951a44
commit 99611aa1bc

View file

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