- latest bootstrap.py

- cosmetics


git-svn-id: http://svn.dataflake.org/svn/Products.LDAPMultiPlugins/trunk@1926 835909ba-7c00-0410-bfa4-884f43845301
This commit is contained in:
jens 2010-04-15 08:56:03 +00:00
parent 9a7444a471
commit 59bb974bcc
2 changed files with 8 additions and 9 deletions

View File

@ -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)

View File

@ -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),
)