[Checkins] SVN: z3c.configurator/trunk/ Update pypi configuration

Roger Ineichen roger at projekt01.ch
Wed May 7 14:31:27 EDT 2008


Log message for revision 86535:
  Update pypi configuration
  Added README.txt and CHANGES.txt
  Fix configuration path for zope.app.securitypolicy and 
  zope.app.security in ftesting.zcml
  
  TODO later:
  Find a way to get rid loading the hole zope trunk as dependency.
  This package offers a view and a zmi menu which includes the hole
  zope as dependency. This package clearly offers a base core
  concept and is not intend as a enhancement for rotterdam by default.

Changed:
  A   z3c.configurator/trunk/CHANGES.txt
  A   z3c.configurator/trunk/README.txt
  U   z3c.configurator/trunk/setup.py
  D   z3c.configurator/trunk/src/z3c/configurator/CHANGES.txt
  U   z3c.configurator/trunk/src/z3c/configurator/browser/ftesting.zcml

-=-
Added: z3c.configurator/trunk/CHANGES.txt
===================================================================
--- z3c.configurator/trunk/CHANGES.txt	                        (rev 0)
+++ z3c.configurator/trunk/CHANGES.txt	2008-05-07 18:31:26 UTC (rev 86535)
@@ -0,0 +1,26 @@
+=======
+CHANGES
+=======
+
+Version 0.5.2dev (unreleased)
+-----------------------------
+
+- Added possibility to apply only specific named plugins in confugure.
+
+- New option to configure allows to have namespaced data to resolve
+  naming conflicts.
+
+- Added a page to call configurators TTW. This is the first step
+  towards mergin z3c.configurator and z3c.sampledata into one package.
+
+- bugfix: Defining recursive dependent names in IConfigurationPlugin 
+  dependencies, ends in recursive plugin lookup.
+
+- bugfix: SchemaConfigurationPluginBase now implements
+  ISchemaConfigurationPluginBase.
+
+
+Version 1.1.1 (unknown)
+-----------------------
+
+- Initial Release


Property changes on: z3c.configurator/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.configurator/trunk/README.txt
===================================================================
--- z3c.configurator/trunk/README.txt	                        (rev 0)
+++ z3c.configurator/trunk/README.txt	2008-05-07 18:31:26 UTC (rev 86535)
@@ -0,0 +1,2 @@
+This package provides a configurator which is designed to extend a component 
+after its creation for Zope3.


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

Modified: z3c.configurator/trunk/setup.py
===================================================================
--- z3c.configurator/trunk/setup.py	2008-05-07 18:11:17 UTC (rev 86534)
+++ z3c.configurator/trunk/setup.py	2008-05-07 18:31:26 UTC (rev 86535)
@@ -1,21 +1,60 @@
-#!python
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""
+$Id:$
+"""
+
+import os
 from setuptools import setup, find_packages
 
-setup(name='z3c.configurator',
-      version='1.1.2',
-      author = "Zope Community",
-      author_email = "zope3-dev at zope.org",
-      description = "Dynamic configuration",
-      license = "ZPL 2.1",
-      keywords = "zope zope3",
-      url='http://svn.zope.org/z3c.configurator',
-      zip_safe=False,
-      packages=find_packages('src'),
-      include_package_data=True,
-      package_dir = {'':'src'},
-      namespace_packages=['z3c'],
-      extras_require = dict(test=['zope.app.testing']),
-      install_requires = [
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(
+    name = 'z3c.configurator',
+    version='1.1.2',
+    author = "Zope Community",
+    author_email = "zope3-dev at zope.org",
+    description = "Dynamic configuration",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license = 'ZPL 2.1',
+    keywords = 'zope3 z3c configurator configuration',
+    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://pypi.python.org/pypi/z3c.configurator',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['z3c'],
+    extras_require = dict(
+        test = [
+            'zope.app.testing',
+            ],
+        ),
+    install_requires = [
           'setuptools',
           'zope.annotation',
           'zope.app.pagetemplate',
@@ -32,6 +71,7 @@
           'zope.testbrowser',
           'zope.testing',
           ],
-      dependency_links=['http://download.zope.org/distribution']
-      )
+    dependency_links = ['http://download.zope.org/distribution'],
+    zip_safe=False,
+    )
 

Deleted: z3c.configurator/trunk/src/z3c/configurator/CHANGES.txt
===================================================================
--- z3c.configurator/trunk/src/z3c/configurator/CHANGES.txt	2008-05-07 18:11:17 UTC (rev 86534)
+++ z3c.configurator/trunk/src/z3c/configurator/CHANGES.txt	2008-05-07 18:31:26 UTC (rev 86535)
@@ -1,30 +0,0 @@
-========================
-z3c.configurator Changes
-========================
-
-This file contains change information for the current z3c.configurator
-package.
-
-After 1.0 (trunk only)
-======================
-
-New features
-------------
-
-- Added possibility to apply only specific named plugins in confugure.
-
-- New option to configure allows to have namespaced data to resolve
-  naming conflicts.
-
-- Added a page to call configurators TTW. This is the first step
-  towards mergin z3c.configurator and z3c.sampledata into one package.
-
-Bug fixes
----------
-
-- Defining recursive dependent names in IConfigurationPlugin dependencies,
-  ends in recursive plugin lookup.
-
-- SchemaConfigurationPluginBase now implements
-  ISchemaConfigurationPluginBase.
-

Modified: z3c.configurator/trunk/src/z3c/configurator/browser/ftesting.zcml
===================================================================
--- z3c.configurator/trunk/src/z3c/configurator/browser/ftesting.zcml	2008-05-07 18:11:17 UTC (rev 86534)
+++ z3c.configurator/trunk/src/z3c/configurator/browser/ftesting.zcml	2008-05-07 18:31:26 UTC (rev 86535)
@@ -5,10 +5,10 @@
 
   <include package="zope.app.zcmlfiles" />
 
-  <include package="zope.app.securitypolicy" file="meta.zcml" />
+  <include package="zope.securitypolicy" file="meta.zcml" />
   <include package="zope.app.authentication" />
   <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
 
   <include package="zope.app.securitypolicy" />
 



More information about the Checkins mailing list