I'm getting tje following error after having upgraded setuptools to version 67.1.0:
% python setup.py bdist_wheel
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help
error: invalid command 'bdist_wheel'
Have others come across this issue? The error was not there before the upgrade.
Within my setup.py, I have
#!/usr/bin/env python
import setuptools
if __name__ == "__main__":
    setuptools.setup()
and the version of wheel is 0.38.4.
Thanks in advance.
