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
commit7ad09c1eabc23d9535ec77dd7679572760962f69 (patch)
treea95796a3756f64cd3682890ac979638f0f77f8fd /setup.cfg
parent3f144762eebb13d2185e680830ebe8095df0eaf2 (diff)
downloadpython-setuptools-bitbucket-7ad09c1eabc23d9535ec77dd7679572760962f69.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)
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
+