summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-07-10 20:47:59 +0000
committerPJ Eby <distutils-sig@python.org>2006-07-10 20:47:59 +0000
commitec2e4eaa16bd6a1ca4e9f142a82b5b29701dd6e3 (patch)
treea95796a3756f64cd3682890ac979638f0f77f8fd /setup.cfg
parent8689d19a64f4b3e2260444da18d676ef5af41539 (diff)
downloadpython-setuptools-git-ec2e4eaa16bd6a1ca4e9f142a82b5b29701dd6e3.tar.gz
Added ``--no-date`` and ``--no-svn-revision`` options to ``egg_info``
command, to allow suppressing tags configured in ``setup.cfg``. (backports from trunk) --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4050539
Diffstat (limited to 'setup.cfg')
-rwxr-xr-xsetup.cfg11
1 files changed, 6 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
index 1ae92707..847133d1 100755
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,8 +1,9 @@
-[aliases]
-binary = bdist_egg upload --show-response
-develop = develop
-source = register sdist binary
-
[egg_info]
tag_build = dev
tag_svn_revision = 1
+
+[aliases]
+release = egg_info -RDb ''
+source = register sdist binary
+binary = bdist_egg upload --show-response
+