1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-22 10:38:37 +00:00

setup.py: Change short hand to install all extras to all

In our documentation we detail being able to install the `all` extra
as a shorthand for installing all the available extra packages that WA
may require however this was actually implemented as `everything`.
This commit is contained in:
Marc Bonnici 2019-06-04 14:15:01 +01:00 committed by setrofim
parent 2347c8c007
commit 22437359b6

View File

@ -113,7 +113,7 @@ params = dict(
)
all_extras = list(chain(iter(params['extras_require'].values())))
params['extras_require']['everything'] = all_extras
params['extras_require']['all'] = all_extras
class sdist(orig_sdist):