setup.py cmd --help
时间: 2023-09-30 20:10:19 浏览: 157
setup.py
`setup.py` is a script used in Python packages to configure the package installation process. The `cmd` command in `setup.py` is used to specify a command that should be added to the `setup.py` command line interface.
The `setup.py cmd --help` command will show the help message for the specified command. For example, if you have defined a custom command called `mycommand` in your `setup.py` file, running `setup.py mycommand --help` will show the help message for that command.
The output will depend on how you have defined the `mycommand` command in `setup.py`. Generally, the help message will include a description of the command, its usage, and any available options or arguments.
阅读全文