summaryrefslogtreecommitdiff
path: root/setuptools/command/sdist.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * Open svn externals file in text mode.Martin v. L?wis2009-09-131-1/+1
| |
| * #2 fixed setuptools for 2.7 (current trunk)Tarek Ziad?2009-07-161-0/+46
| |
| * #1 Added compatibility with Subversion 1.6.Tarek Ziad?2009-07-161-1/+2
| |
* | Copy changes from 1aae1efe5733 for setuptools/command/* (except easy_install.pyJason R. Coombs2013-05-031-21/+62
|/
* Support subversion 1.5 (backport from trunk)PJ Eby2008-07-161-1/+1
|
* Fix ``resource_listdir('')`` always returning an empty list for zippedPJ Eby2008-02-151-1/+1
| | | | | eggs. Fix missing import in sdist command when encountering unrecognized SVN entries format. (backports from trunk)
* Should've used distutils.log.warn instead of warnings.warnPJ Eby2006-09-261-2/+2
| | | | (backport from trunk)
* Support svn 1.4 working copy format (backport from trunk)PJ Eby2006-09-171-21/+21
|
* Source distributions now always include a ``setup.cfg`` file that explicitlyPJ Eby2006-07-181-12/+12
| | | | | | | | | | sets ``egg_info`` options such that they produce an identical version number to the source distribution's version number. (Previously, the default version number could be different due to the use of ``--tag-date``, or if the version was overridden on the command line that built the source distribution.) (backport from trunk)
* Fixed redundant warnings about missing ``README`` file(s); it should nowPJ Eby2006-07-101-2/+43
| | | | | appear only if you are actually a source distribution. (backport from trunk)
* Added ``setuptools.file_finders`` entry point group to allow implementingPJ Eby2006-03-291-8/+8
| | | | revision control plugins.
* Prevent failed attempts at removing MANIFEST.in from masking errors thatPJ Eby2006-02-211-10/+10
| | | | occur while reading it.
* The ``sdist`` command no longer uses the traditional ``MANIFEST`` file toPJ Eby2005-11-181-8/+49
| | | | | | | create source distributions. ``MANIFEST.in`` is still read and processed, as are the standard defaults and pruning. But the manifest is built inside the project's ``.egg-info`` directory as ``SOURCES.txt``, and it is rebuilt every time the ``egg_info`` command is run.
* Fix wrongly including files that Subversion has marked deleted.PJ Eby2005-08-061-5/+5
|
* Include ``svn:externals`` directories in source distributions as well asPJ Eby2005-07-091-42/+42
| | | | normal subversion-controlled files and directories.
* Added support for defining command aliases in distutils configurationPJ Eby2005-07-081-1/+1
| | | | | | | files, under the "[aliases]" section. To prevent recursion and to allow aliases to call the command of the same name, a given alias can be expanded only once per command-line invocation. You can define new aliases with the "alias" command, either for the local, global, or per-user configuration.
* Add upload support to setuptools, and make default downloads of setuptoolsPJ Eby2005-07-071-0/+41
| | | | | come from PyPI/python.org rather than from telecommunity.com. Bump to version 0.5a7.
* Beefed up the "sdist" command so that if you don't have a MANIFEST.in, itPJ Eby2005-07-071-0/+82
will include all files under revision control (CVS or Subversion) in the current directory, and it will regenerate the list every time you create a source distribution, not just when you tell it to. This should make the default "do what you mean" more often than the distutils' default behavior did, while still retaining the old behavior in the presence of MANIFEST.in.