• Home
  • Raw
  • Download

Lines Matching refs:be

7 Distutils can be extended in various ways.  Most extensions take the form of new
8 commands or replacements for existing commands. New commands may be written to
10 replacements for existing commands may be made to modify details of how the
15 should be copied into packages in addition to :file:`.py` files as a
29 .. % \XXX{Would an uninstall command be a good example here?}
50 # implement whatever needs to be different...
55 This approach is most valuable if the new implementations must be used to use a
60 commands to be added which can support existing :file:`setup.py` scripts without
63 the commands can be used for anything distutils commands can be used for. A new
65 :option:`!--command-packages`), can be used to specify additional packages to be
67 can be specified on the command line or in a configuration file. This option
68 can only be set in the ``[global]`` section of a configuration file, or before
69 any commands on the command line. If set in a configuration file, it can be
71 line causes the default to be used. This should never be set in a configuration
74 This new option can be used to add any number of packages to the list of
75 packages searched for command implementations; multiple package names should be
79 :mod:`distutils.command`, :mod:`distcmds`, and :mod:`buildcmds` will be searched
80 in that order. New commands are expected to be implemented in modules of the
82 command line option above, the command :command:`bdist_openpkg` could be
94 should still be added to represent what would have been created.