summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/sdist.py
Commit message (Expand)AuthorAgeFilesLines
* Don't bother to 'mkpath()' the 'dist_dir' -- that's now taken care ofGreg Ward2000-08-221-2/+0
* Fixed imports from '*util' modules to not just import everything from util.Greg Ward2000-08-051-10/+8
* Catch syntax errors from processing template lines and turn them intoGreg Ward2000-07-301-2/+9
* Replaced 'self.files' with 'self.filelist': now we carry around a FileListGreg Ward2000-07-301-54/+38
* The other half of Rene Liebscher's patch to add the Template class,Greg Ward2000-07-301-305/+15
* Remove unused 'search_dir()' method.Greg Ward2000-07-271-21/+1
* Added the --dist-dir option to control where the archive(s) are put;Greg Ward2000-07-051-1/+11
* Fixed 'findall()' so it only returns regular files -- no directories.Greg Ward2000-06-291-18/+54
* Changed so all the help-generating functions are defined, at module-level,Greg Ward2000-06-241-18/+17
* Stylistic/formatting changes to Rene Liebscher's '--help-xxx' patch.Greg Ward2000-06-241-2/+2
* Fix inspired by Rene Liebscher: if setup script is newer than theGreg Ward2000-06-211-3/+26
* Include setup.cfg in the list of default files to distribute.Greg Ward2000-06-081-1/+5
* Moved the code that prunes the file list after reading the manifestGreg Ward2000-06-081-9/+14
* Renamed 'find_defaults()' to 'add_defaults()'.Greg Ward2000-06-081-13/+5
* Docstring addition binge.Greg Ward2000-06-081-15/+44
* Docstring reformatting binge.Greg Ward2000-06-081-28/+23
* Cosmetic tweaks to imports, the 'show_formats()' function, and theGreg Ward2000-06-081-11/+19
* Made all debug output go through the 'debug_print()' method instead ofGreg Ward2000-06-081-75/+90
* Patch from Rene Liebscher: this adds "--help-foo" options to list theGreg Ward2000-06-071-2/+17
* Use 'ensure_string_list()' for 'formats' option, so that it can beGreg Ward2000-06-041-2/+1
* Remember the list of archive files created in 'make_distribution()'.Greg Ward2000-06-011-1/+13
* Renamed 'native_path()' to 'convert_path()'.Greg Ward2000-05-311-5/+5
* Some far-reaching naming changes:Greg Ward2000-05-271-4/+4
* Patch from Andrew Kuchling: prune out the build and source distributionGreg Ward2000-05-271-0/+7
* Normalized all the end-of-class lines.Greg Ward2000-05-251-1/+1
* Supply short form for --manifest-only (-o) and --force-manifest (-f)Greg Ward2000-04-261-2/+2
* Harry Henry Gebel:Greg Ward2000-04-261-5/+5
* Harry Henry Gebel:Greg Ward2000-04-251-2/+1
* Check that 'self.formats' is good early on.Greg Ward2000-04-221-3/+8
* Changed to call 'get_fullname()', not 'get_full_name()', on Distribution object.Greg Ward2000-04-221-1/+1
* Fix 'check_metadata()' so it grovels through the distribution's metadataGreg Ward2000-04-211-6/+6
* Patch from Andrew Kuchling: allow multiple include/exclude patternsGreg Ward2000-04-211-48/+55
* Coerce all paths in the manifest template to the local path syntax withGreg Ward2000-04-141-7/+7
* Ditched the unused 'list_only' option.Greg Ward2000-04-091-3/+4
* Changed to use the new 'has_pure_modules()' and 'has_ext_modules()' methodsGreg Ward2000-03-311-52/+19
* Moved the guts of 'make_tarball()' and 'make_zipfile()' to distutils.utilGreg Ward2000-03-291-53/+4
* Patch from Bastian Kleineidam <calvin@cs.uni-sb.de>:Greg Ward2000-03-181-16/+2
* Changed '__rcsid__' to '__revision__'.Greg Ward2000-03-021-1/+1
* Fix from est@hyperreal.org: missing initialize in 'find_defaults()'.Greg Ward2000-02-241-0/+1
* Renamed 'set_default_options()' to 'initialize_options()', andGreg Ward2000-02-181-2/+2
* Renamed all 'options' class attributes to 'user_options'.Greg Ward2000-02-181-20/+21
* Renamed all command classes so they're exactly the same as the name of theGreg Ward2000-02-181-1/+1
* The 'sdist' command to create a source distribution. This is derived from theGreg Ward2000-02-171-0/+716