[Checkins] SVN: zope.app.authentication/branches/zope.pluggableauth-trollfot/s Fixed dependencies. Now, they are clean.

Souheil CHELFOUH souheil at chelfouh.com
Sun Jan 24 18:09:46 EST 2010


Log message for revision 108451:
  Fixed dependencies. Now, they are clean.
  

Changed:
  U   zope.app.authentication/branches/zope.pluggableauth-trollfot/setup.py
  U   zope.app.authentication/branches/zope.pluggableauth-trollfot/src/zope/app/authentication/browser/schemasearch.py

-=-
Modified: zope.app.authentication/branches/zope.pluggableauth-trollfot/setup.py
===================================================================
--- zope.app.authentication/branches/zope.pluggableauth-trollfot/setup.py	2010-01-24 22:52:18 UTC (rev 108450)
+++ zope.app.authentication/branches/zope.pluggableauth-trollfot/setup.py	2010-01-24 23:09:46 UTC (rev 108451)
@@ -27,10 +27,11 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.app.authentication',
-      version = '3.6.3dev',
+      version = '3.7.0dev',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
-      description='Pluggable Authentication Utility',
+      description=('Principals and groups management for '
+                   'the pluggable authentication utility'),
       long_description=(
         read('README.txt')
         + '\n\n' +
@@ -60,35 +61,43 @@
       keywords='zope3 authentication pluggable principal group',
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-      extras_require=dict(test=['zope.app.testing',
-                                'zope.app.securitypolicy',
-                                'zope.app.zcmlfiles',
-                                'zope.securitypolicy',
-                                'zope.testbrowser',
-                                'zope.login',]),
+      extras_require=dict(test=[
+          'zope.app.testing',
+          'zope.app.securitypolicy',
+          'zope.app.zcmlfiles',
+          'zope.securitypolicy',
+          'zope.testbrowser',
+          'zope.publisher',
+          'zope.testing',
+          'zope.session',
+          'zope.formlib',
+          'zope.publisher>=3.12',
+          'zope.site',
+          'zope.login',]),
       namespace_packages=['zope', 'zope.app'],
-      install_requires=['setuptools',
-                        'zope.app.component',
-                        'zope.app.container',
-                        'zope.app.form',
-                        'zope.authentication',
-                        'zope.dublincore',
-                        'zope.event',
-                        'zope.exceptions',
-                        'zope.i18n',
-                        'zope.i18nmessageid',
-                        'zope.interface',
-                        'zope.location',
-                        'zope.password>=3.5.1',
-                        'zope.publisher>=3.12',
-                        'zope.schema',
-                        'zope.security',
-                        'zope.session',
-                        'zope.site',
-                        'zope.pluggableauth',
-                        'zope.traversing',
-                        'ZODB3',
-                        ],
+      install_requires=[
+          'ZODB3',
+          'setuptools',
+          'zope.app.form',
+          'zope.app.container',
+          'zope.app.component',
+          'zope.authentication',
+          'zope.component',
+          'zope.container',
+          'zope.dublincore',
+          'zope.event',
+          'zope.exceptions',
+          'zope.formlib',
+          'zope.i18n',
+          'zope.i18nmessageid',
+          'zope.interface',
+          'zope.location',
+          'zope.password>=3.5.1',
+          'zope.pluggableauth',
+          'zope.schema',
+          'zope.security',
+          'zope.traversing',
+          ],
       include_package_data = True,
       zip_safe = False,
       )

Modified: zope.app.authentication/branches/zope.pluggableauth-trollfot/src/zope/app/authentication/browser/schemasearch.py
===================================================================
--- zope.app.authentication/branches/zope.pluggableauth-trollfot/src/zope/app/authentication/browser/schemasearch.py	2010-01-24 22:52:18 UTC (rev 108450)
+++ zope.app.authentication/branches/zope.pluggableauth-trollfot/src/zope/app/authentication/browser/schemasearch.py	2010-01-24 23:09:46 UTC (rev 108451)
@@ -17,13 +17,13 @@
 """
 __docformat__ = "reStructuredText"
 
+from zope.app.authentication.i18n import ZopeMessageFactory as _
+from zope.app.form.browser.interfaces import ISourceQueryView
+from zope.app.form.utility import setUpWidgets, getWidgetsData
+from zope.formlib.interfaces import IInputWidget
+from zope.i18n import translate
 from zope.interface import implements
-from zope.i18n import translate
 from zope.schema import getFieldsInOrder
-from zope.app.form.utility import setUpWidgets, getWidgetsData
-from zope.app.form.interfaces import IInputWidget
-from zope.app.form.browser.interfaces import ISourceQueryView
-from zope.app.authentication.i18n import ZopeMessageFactory as _
 from zope.traversing.api import getName, getPath
 
 



More information about the checkins mailing list