setup.py --help-commands
It is a Japanese translation of the English sentence displayed in. Please let me know if there are any mistakes.
usage:
setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
setup.py --help [cmd1 cmd2 ...]
setup.py --help-commands
setup.py cmd --help
Standard commands:
setup.py build Build everything you need for the installation.
setup.py build_py Python Build the module. (Copy to build directory)
setup.py build_ext C / C ++ Build the extension. (Run compile / link to the bulk directory)
setup.py build_clib Build the C / C ++ library used as a Python extension.
setup.py build_scripts Build the script. (Copy the line containing #! And correct it)
setup.py clean Delete the temporary files created by the setup.py build command.
setup.py install Install everything from the build directory.
setup.py install_lib Install all Python modules (extension modules and Python modules by C / C ++ etc.).
setup.py install_headers Install the header file of C / C ++.
setup.py install_scripts Install the script. (It doesn't matter if it's Python or not)
setup.py install_data Install the data file.
setup.py sdist Create a source distribution (tarball, zip file, etc.).
setup.py register Register the distribution in the Python package index.
setup.py bdist Create a pre-built (binary) distribution.
setup.py bdist_dumb Create a distribution built in dump format.
setup.py bdist_rpm Create a distribution in the RPM format.
setup.py bdist_wininst Create an installer for MS Windows.
setup.py upload Upload the binary package to PyPI.
setup.py check Execute Check Package.
Extra commands:
setup.py saveopts Save the specified options to setup.cfg or another configuration file.
setup.py develop Install the package in development mode.
setup.py upload_docs Upload the document to PyPI.
setup.py test Execute unittest after executing the build.
setup.py setopt Set options for setup.cfg and other configuration files.
setup.py install_egg_info Install the package's .egg-info directory.
setup.py rotate Delete the old distribution, leaving the Nth new file.
setup.py bdist_wheel Create a distribution in the form wheel.
setup.py egg_info Create a .egg-info directory for your distribution.
setup.py alias Define a shortcut to execute a single command or a compound command.
setup.py easy_install Find / get / install Python packages.
setup.py bdist_egg Create an egg-style distribution.
setup.py build_sphinx Sphinx Build the document.
Global options: --verbose (-v) Display the result when the command is executed. (Default behavior)
--quiet (-q) Execute the command without displaying the result. (Turn off result display)
--dry-run (-n) Show what is going on without executing the command.
--help (-h) View help message details.
--no-user-cfg Ignore pydistutils.cfg in your home directory.
--command-packages List the packages that provide the distutils command.
Note: Only display information, other commands are ignored.
--help-commands Show available commands.
--name Display the package name.
--version (-V) Display the package version.
--fullname Display the full name of the package in the format below.
<package name>-<version>
--author Display the name of the package creator.
--author-email Display the email address of the package creator.
--maintainer Display the maintainer's name.
--maintainer-email Display the maintainer's email address.
--contact If you know it, display the maintainer name, if you don't, display the name of the package creator.
--contact-email If you know, display the maintainer's email address and If you don't know, display the package creator's email address.
--url Display the URL of the package.
--license View the package license.
--description Display the package description.
--long-description Display a detailed description of the package.
--platforms Display a list of platforms.
--classifiers Display a list of classifications.
--keywords Display a list of keywords.
--provides Display a list of offered packages / modules.
--requires Display a list of required packages / modules.
--obsoletes Display a list of obsolete packages / modules.
Recommended Posts