[Checkins] SVN: Products.PluggableAuthService/trunk/ Packaging fixups.

Tres Seaver tseaver at palladion.com
Tue Sep 25 22:28:05 EDT 2007


Log message for revision 80080:
  Packaging fixups.

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

-=-

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


Copied: Products.PluggableAuthService/trunk/Products/PluggableAuthService (from rev 80079, PluggableAuthService/trunk)

Modified: Products.PluggableAuthService/trunk/Products/PluggableAuthService/version.txt
===================================================================
--- PluggableAuthService/trunk/version.txt	2007-09-26 02:19:57 UTC (rev 80079)
+++ Products.PluggableAuthService/trunk/Products/PluggableAuthService/version.txt	2007-09-26 02:28:05 UTC (rev 80080)
@@ -1 +1 @@
-PluggableAuthService-1.6 (unreleased)
+1.6dev

Added: Products.PluggableAuthService/trunk/Products/__init__.py
===================================================================
--- Products.PluggableAuthService/trunk/Products/__init__.py	                        (rev 0)
+++ Products.PluggableAuthService/trunk/Products/__init__.py	2007-09-26 02:28:05 UTC (rev 80080)
@@ -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__)


Property changes on: Products.PluggableAuthService/trunk/Products/__init__.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Added: Products.PluggableAuthService/trunk/README.txt
===================================================================
--- Products.PluggableAuthService/trunk/README.txt	                        (rev 0)
+++ Products.PluggableAuthService/trunk/README.txt	2007-09-26 02:28:05 UTC (rev 80080)
@@ -0,0 +1 @@
+(See Products/PluggableAuthService/README.txt).


Property changes on: Products.PluggableAuthService/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: Products.PluggableAuthService/trunk/setup.py
===================================================================
--- Products.PluggableAuthService/trunk/setup.py	                        (rev 0)
+++ Products.PluggableAuthService/trunk/setup.py	2007-09-26 02:28:05 UTC (rev 80080)
@@ -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
+      """,
+      )


Property changes on: Products.PluggableAuthService/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Checkins mailing list