[Checkins] SVN: zope.app.pluggableauth/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Oct 25 12:38:48 EDT 2007


Log message for revision 81110:
  Get ready for release.
  

Changed:
  A   zope.app.pluggableauth/trunk/CHANGES.txt
  U   zope.app.pluggableauth/trunk/README.txt
  U   zope.app.pluggableauth/trunk/buildout.cfg
  D   zope.app.pluggableauth/trunk/setup.cfg
  U   zope.app.pluggableauth/trunk/setup.py
  _U  zope.app.pluggableauth/trunk/src/
  U   zope.app.pluggableauth/trunk/src/zope/app/pluggableauth/interfaces.py

-=-
Added: zope.app.pluggableauth/trunk/CHANGES.txt
===================================================================
--- zope.app.pluggableauth/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.pluggableauth/trunk/CHANGES.txt	2007-10-25 16:38:47 UTC (rev 81110)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-25)
+------------------
+
+- Initial release independent of the main Zope tree.


Property changes on: zope.app.pluggableauth/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.pluggableauth/trunk/README.txt
===================================================================
--- zope.app.pluggableauth/trunk/README.txt	2007-10-25 16:29:10 UTC (rev 81109)
+++ zope.app.pluggableauth/trunk/README.txt	2007-10-25 16:38:47 UTC (rev 81110)
@@ -1,4 +1,2 @@
-zope.app.pluggableauth
-===============
-
-See, src/zope/app/pluggableauth/README.txt 
+This package provides the original implementation of the pluggable
+authentication utility. It has been superceded by ``zope.app.authentication``.

Modified: zope.app.pluggableauth/trunk/buildout.cfg
===================================================================
--- zope.app.pluggableauth/trunk/buildout.cfg	2007-10-25 16:29:10 UTC (rev 81109)
+++ zope.app.pluggableauth/trunk/buildout.cfg	2007-10-25 16:38:47 UTC (rev 81110)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Deleted: zope.app.pluggableauth/trunk/setup.cfg
===================================================================
--- zope.app.pluggableauth/trunk/setup.cfg	2007-10-25 16:29:10 UTC (rev 81109)
+++ zope.app.pluggableauth/trunk/setup.cfg	2007-10-25 16:38:47 UTC (rev 81110)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.pluggableauth/trunk/setup.py
===================================================================
--- zope.app.pluggableauth/trunk/setup.py	2007-10-25 16:29:10 UTC (rev 81109)
+++ zope.app.pluggableauth/trunk/setup.py	2007-10-25 16:38:47 UTC (rev 81110)
@@ -15,24 +15,44 @@
 
 $Id$
 """
-
 import os
-
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name = 'zope.app.pluggableauth',
-      version = '3.4.0b1',
-      url = 'http://svn.zope.org/zope.app.pluggableauth',
-      license = 'ZPL 2.1',
-      description = 'Zope app.pluggableauth',
-      author = 'Zope Corporation and Contributors',
-      author_email = 'zope3-dev at zope.org',
-      long_description = "",
-
-      packages = find_packages('src'),
+      version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Pluggable Authenticatin Mechanism (Obselete)',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'pluggableauth', 'README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 authentication pluggable",
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Framework :: Zope3'],
+      url='http://cheeseshop.python.org/pypi/zope.app.pluggableauth',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
       package_dir = {'': 'src'},
-
-      namespace_packages = ['zope', 'zope.app'],
+      namespace_packages=['zope', 'zope.app'],
+      extras_require = dict(test=['zope.app.testing',]),
       install_requires = ['setuptools',
                           'ZODB3',
                           'zope.app.component',
@@ -47,8 +67,6 @@
                           'zope.schema',
                           'zope.traversing',
                           ],
-      extras_require = dict(test=['zope.app.testing',]),
       include_package_data = True,
-
       zip_safe = False,
       )


Property changes on: zope.app.pluggableauth/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.pluggableauth.egg-info


Modified: zope.app.pluggableauth/trunk/src/zope/app/pluggableauth/interfaces.py
===================================================================
--- zope.app.pluggableauth/trunk/src/zope/app/pluggableauth/interfaces.py	2007-10-25 16:29:10 UTC (rev 81109)
+++ zope.app.pluggableauth/trunk/src/zope/app/pluggableauth/interfaces.py	2007-10-25 16:38:47 UTC (rev 81110)
@@ -17,7 +17,7 @@
 """
 __docformat__ = 'restructuredtext'
 
-from zope.app.i18n import ZopeMessageFactory as _
+from zope.i18nmessageid import ZopeMessageFactory as _
 from zope.app.container.interfaces import IContainer, IContained
 from zope.app.container.constraints import ItemTypePrecondition
 from zope.app.container.constraints import ContainerTypesConstraint



More information about the Checkins mailing list