aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-08 05:09:23 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-08 05:09:23 +0000
commit6050f5361738831a12debd373b9016a077e930df (patch)
tree25e82b1ab87651a118c178191776e19575dd4bab /setuptools/command/sdist.py
parent592269afeaa4f96bddbaa8b6fbe8dddcea2445a4 (diff)
downloadexternal_python_setuptools-6050f5361738831a12debd373b9016a077e930df.tar.gz
external_python_setuptools-6050f5361738831a12debd373b9016a077e930df.tar.bz2
external_python_setuptools-6050f5361738831a12debd373b9016a077e930df.zip
Added support for defining command aliases in distutils configuration
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. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041094
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-xsetuptools/command/sdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index 3891526d..673255bb 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -84,6 +84,7 @@ class sdist(_sdist):
"""Smart sdist that finds anything supported by revision control"""
def run(self):
+ self.run_command('egg_info')
_sdist.run(self)
dist_files = getattr(self.distribution,'dist_files',[])
for file in self.archive_files:
@@ -120,4 +121,3 @@ class sdist(_sdist):
-