Is your feature request related to a problem? Please describe.
Running python -m sphinx --help, I see it's an alias for sphinx-build.
It would be cool if this was an entrypoint to other commands, like sphinx-apidoc.
Describe the solution you'd like
A more generalized console entrypoint that supports other commands:
python -m sphinx --help
# Tells about build, apidoc, etc.
python -m sphinx build ...
python -m sphinx apidoc ...
Describe alternatives you've considered
A workaround is directly invoking the relevant modules as listed here:
python -m sphinx.cmd.build ...
python -m sphinx.ext.apidoc ...