setup: make 'clean' command compatible again with distutilsv8.5.0
commitba4db43f636d701411b10b44fbb77f02393b4e98
authorPino Toscano <[email protected]>
Sat, 25 Jun 2022 04:30:45 +0000 (25 06:30 +0200)
committerPino Toscano <[email protected]>
Sat, 25 Jun 2022 04:38:30 +0000 (25 06:38 +0200)
tree7967f83335e659e600c00b16222cb516efd557b0
parentb34fbaf405c61935efbd0d3e9b3a134f26097ea7
setup: make 'clean' command compatible again with distutils

After the switch of 'my_clean' to a simple Command, the 'clean' command
has no more bits for options, resulting in distutils (either external
or embedded in setuptools) complaining about it:

  distutils.errors.DistutilsClassError: command class <class '__main__.my_clean'> must provide 'user_options' attribute (a list of tuples)

To overcome that, provide all the standard bits from options, i.e. the
'user_options' list, and the 'initialize_options' & 'finalize_options'
methods. In addition, add a dummy 'all' option, as distutils wants it:

  error: error in [...]/.pydistutils.cfg: command 'my_clean' has no such option 'all'

Fixes commit a965c91c6fa1275613edbbef75c0422574eb9ff2

Signed-off-by: Pino Toscano <[email protected]>
setup.py