From 59bb974bcc9bf469eba12d79d9ed4f10cd5c46f5 Mon Sep 17 00:00:00 2001 From: jens Date: Thu, 15 Apr 2010 08:56:03 +0000 Subject: [PATCH] - latest bootstrap.py - cosmetics git-svn-id: http://svn.dataflake.org/svn/Products.LDAPMultiPlugins/trunk@1926 835909ba-7c00-0410-bfa4-884f43845301 --- bootstrap.py | 5 ++--- setup.py | 12 ++++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/bootstrap.py b/bootstrap.py index 3d832b8..929bdad 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2006 Zope Corporation and Contributors. +# Copyright (c) 2006 Zope Foundation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, @@ -33,7 +33,7 @@ parser.add_option("-v", "--version", dest="version", help="use a specific zc.buildout version") parser.add_option("-d", "--distribute", action="store_true", dest="distribute", default=False, - help="Use Disribute rather than Setuptools.") + help="Use Distribute rather than Setuptools.") parser.add_option("-c", None, action="store", dest="config_file", help=("Specify the path to the buildout configuration " @@ -119,4 +119,3 @@ ws.require('zc.buildout' + VERSION) import zc.buildout.buildout zc.buildout.buildout.main(args) shutil.rmtree(tmpeggs) - diff --git a/setup.py b/setup.py index 668f4eb..8d5df5f 100644 --- a/setup.py +++ b/setup.py @@ -42,10 +42,10 @@ setup(name='Products.%s' % NAME, zip_safe=False, install_requires=[ #Zope >= 2.9, - "setuptools", - "python-ldap >= 2.0.6", - "Products.LDAPUserFolder >= 2.9", - "Products.PluggableAuthService >= 1.4.0", + 'setuptools', + 'python-ldap >= 2.0.6', + 'Products.LDAPUserFolder >= 2.9', + 'Products.PluggableAuthService >= 1.4.0', ], extras_require={ 'exportimport': [ @@ -55,7 +55,7 @@ setup(name='Products.%s' % NAME, }, entry_points=""" [zope2.initialize] - Products.LDAPMultiPlugins = Products.LDAPMultiPlugins:initialize - """, + Products.%s = Products.%s:initialize + """ % (NAME, NAME), )