[Checkins] SVN: Products.PluggableAuthService/tags/ Tag 1.5.1 release.

Tres Seaver tseaver at palladion.com
Tue Sep 25 22:36:45 EDT 2007


Log message for revision 80084:
  Tag 1.5.1 release.

Changed:
  A   Products.PluggableAuthService/tags/
  A   Products.PluggableAuthService/tags/1.5.1/
  A   Products.PluggableAuthService/tags/1.5.1/Products/
  A   Products.PluggableAuthService/tags/1.5.1/Products/PluggableAuthService/
  U   Products.PluggableAuthService/tags/1.5.1/Products/PluggableAuthService/version.txt
  A   Products.PluggableAuthService/tags/1.5.1/Products/__init__.py
  A   Products.PluggableAuthService/tags/1.5.1/README.txt
  A   Products.PluggableAuthService/tags/1.5.1/setup.py

-=-

Property changes on: Products.PluggableAuthService/tags/1.5.1
___________________________________________________________________
Name: svn:ignore
   + Products.PluggableAuthService.egg-info


Copied: Products.PluggableAuthService/tags/1.5.1/Products/PluggableAuthService (from rev 80083, PluggableAuthService/tags/1.5.1)

Modified: Products.PluggableAuthService/tags/1.5.1/Products/PluggableAuthService/version.txt
===================================================================
--- PluggableAuthService/tags/1.5.1/version.txt	2007-09-26 02:32:33 UTC (rev 80083)
+++ Products.PluggableAuthService/tags/1.5.1/Products/PluggableAuthService/version.txt	2007-09-26 02:36:45 UTC (rev 80084)
@@ -1 +1 @@
-PluggableAuthService-1.5.1
+1.5.1

Copied: Products.PluggableAuthService/tags/1.5.1/Products/__init__.py (from rev 80083, Products.PluggableAuthService/branches/1.5/Products/__init__.py)
===================================================================
--- Products.PluggableAuthService/tags/1.5.1/Products/__init__.py	                        (rev 0)
+++ Products.PluggableAuthService/tags/1.5.1/Products/__init__.py	2007-09-26 02:36:45 UTC (rev 80084)
@@ -0,0 +1,6 @@
+# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    from pkgutil import extend_path
+    __path__ = extend_path(__path__, __name__)

Copied: Products.PluggableAuthService/tags/1.5.1/README.txt (from rev 80083, Products.PluggableAuthService/branches/1.5/README.txt)
===================================================================
--- Products.PluggableAuthService/tags/1.5.1/README.txt	                        (rev 0)
+++ Products.PluggableAuthService/tags/1.5.1/README.txt	2007-09-26 02:36:45 UTC (rev 80084)
@@ -0,0 +1 @@
+(See Products/PluggableAuthService/README.txt).

Copied: Products.PluggableAuthService/tags/1.5.1/setup.py (from rev 80083, Products.PluggableAuthService/branches/1.5/setup.py)
===================================================================
--- Products.PluggableAuthService/tags/1.5.1/setup.py	                        (rev 0)
+++ Products.PluggableAuthService/tags/1.5.1/setup.py	2007-09-26 02:36:45 UTC (rev 80084)
@@ -0,0 +1,56 @@
+import os
+from setuptools import setup
+from setuptools import find_packages
+
+here = os.path.abspath(os.path.dirname(__file__))
+package = os.path.join(here, 'Products', 'PluggableAuthService')
+
+def _package_doc(name):
+    f = open(os.path.join(package, name))
+    return f.read()
+
+NAME = 'PluggableAuthService'
+
+VERSION = _package_doc('version.txt').strip()
+if VERSION.startswith(NAME):
+    VERSION = VERSION[len(NAME):]
+while VERSION and VERSION[0] in '-_.':
+    VERSION = VERSION[1:]
+
+_boundary = '\n' + ('-' * 60) + '\n'
+README = (open(os.path.join(here, 'README.txt')).read()
+        + _boundary + _package_doc('README.txt')
+        + _boundary + _package_doc('doc/CHANGES.txt')
+         )
+
+setup(name='Products.PluggableAuthService',
+      version=VERSION,
+      description='Pluggable Zope2 authentication / authorization framework',
+      long_description=README,
+      classifiers=[
+        "Development Status :: 5 - Production/Stable",
+        "Framework :: Plone",
+        "Framework :: Zope2",
+        "Intended Audience :: Developers",
+        "License :: OSI Approved :: Zope Public License",
+        "Programming Language :: Python",
+        "Topic :: Software Development",
+        "Topic :: System :: Security",
+        "Topic :: System :: Systems Administration :: "
+                "Authentication/Directory",
+        ],
+      keywords='web application server zope zope2',
+      author="Zope Corporation and contributors",
+      author_email="zope-cmf at lists.zope.org",
+      url="http://www.zope.org/Products/PluggableAuthService",
+      license="ZPL 2.1 (http://www.zope.org/Resources/License/ZPL-2.1)",
+      packages=find_packages(),
+      include_package_data=True,
+      namespace_packages=['Products'],
+      zip_safe=False,
+      #install_requires=['Zope >= 2.10']
+      entry_points="""
+      [zope2.initialize]
+      Products.PluggableAuthService = Products.PluggableAuthService:initialize
+      """,
+      )



More information about the Checkins mailing list