pytoolbox.setuptools module

class pytoolbox.setuptools.Disabled(dist, **kw)[source]

Bases: setuptools.Command

description = 'Do not run this.'
user_options = [('dummy=', 'd', 'dummy option to make setuptools happy')]
initialize_options()[source]

Initialize options.

finalize_options()[source]

Finalize options.

run()[source]

A command’s raison d’etre: carry out the action it exists to perform, controlled by the options initialized in ‘initialize_options()’, customized by other commands, the setup script, the command-line, and config files, and finalized in ‘finalize_options()’. All terminal output and filesystem interaction should be done by ‘run()’.

This method must be implemented by all command classes.