Home | History | Annotate | Download | only in distutils

Lines Matching defs:Distribution

3 Provides the Distribution class, which represents the module distribution
34 class Distribution:
36 is really done within a Distribution instance, which farms the work out
39 Setup scripts will almost never instantiate Distribution directly,
42 Distribution for some specialized purpose, and then pass the subclass
44 necessary to respect the expectations that 'setup' has of Distribution.
129 """Construct a new Distribution instance: initialize all the
130 attributes of a Distribution, and then use 'attrs' (a dictionary
146 # Store the distribution meta-data (name, version, author, and so
195 # than of the Distribution itself. We provide aliases for them in
196 # Distribution as a convenience to the developer.
231 # distribution options.
249 msg = "'licence' distribution option is deprecated; use 'license'"
265 msg = "Unknown distribution option: %s" % repr(key)
384 self.announce("Distribution.parse_config_files():")
406 # to set Distribution options.
427 "global options" -- options that set attributes of the Distribution
595 """Set final values for all the options on the Distribution
842 self.announce("Distribution.get_command_obj(): " \
942 # -- Methods that operate on the Distribution ----------------------
976 # -- Distribution query methods ------------------------------------
1012 """Dummy class to hold the distribution meta-data: name, version,