diff options
author | Max Wittig <max.wittig@siemens.com> | 2019-12-18 12:14:28 +0100 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2019-12-18 13:03:08 +0100 |
commit | 7ecd5184e62bf1b1f377db161b26fa4580af6b4c (patch) | |
tree | 367b00544a25c758464778a6e362c16345005302 /setup.py | |
parent | 3f78aa3c0d3fc502f295986d4951cfd0eee80786 (diff) | |
download | gitlab-7ecd5184e62bf1b1f377db161b26fa4580af6b4c.tar.gz |
chore: add PyYaml as extra require
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -45,5 +45,8 @@ setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", ], - extras_require={"autocompletion": ["argcomplete>=1.10.0,<2"]}, + extras_require={ + "autocompletion": ["argcomplete>=1.10.0,<2"], + "yaml": ["PyYaml>=5.2"], + }, ) |