[Python-checkins] distutils2: Revert PEP 345 field names in setup script

tarek.ziade python-checkins at python.org
Sat Oct 2 00:52:20 CEST 2010


tarek.ziade pushed 396786e38222 to distutils2:

http://hg.python.org/distutils2/rev/396786e38222
changeset:   718:396786e38222
parent:      714:38d869d48447
user:        ?ric Araujo <merwok at netwok.org>
date:        Fri Oct 01 19:45:34 2010 +0200
summary:     Revert PEP 345 field names in setup script
files:       setup.py

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -210,14 +210,14 @@
 
 setup(name="Distutils2",
       version=VERSION,
-      summary="Python Distribution Utilities",
+      description="Python Distribution Utilities",
       keywords=['packaging', 'distutils'],
       author="Tarek Ziade",
       author_email="tarek at ziade.org",
-      home_page="http://bitbucket.org/tarek/distutils2/wiki/Home",
+      url="http://bitbucket.org/tarek/distutils2/wiki/Home",
       license="PSF",
-      description=README,
-      classifier=_CLASSIFIERS.split('\n'),
+      long_description=README,
+      classifiers=_CLASSIFIERS.split('\n'),
       packages=find_packages(),
       cmdclass={'sdist_hg': sdist_hg, 'install_hg': install_hg},
       package_data={'distutils2._backport': ['sysconfig.cfg']},

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list