[Checkins] SVN: z3c.feature.core/tags/0.1.1/ prepare for another intial release. This is the real one I promise.

Paul Carduner paulcarduner at gmail.com
Fri Mar 27 08:42:04 EDT 2009


Log message for revision 98421:
  prepare for another intial release.  This is the real one I promise.

Changed:
  A   z3c.feature.core/tags/0.1.1/
  D   z3c.feature.core/tags/0.1.1/CHANGES.txt
  A   z3c.feature.core/tags/0.1.1/CHANGES.txt
  D   z3c.feature.core/tags/0.1.1/setup.py
  A   z3c.feature.core/tags/0.1.1/setup.py

-=-

Property changes on: z3c.feature.core/tags/0.1.1
___________________________________________________________________
Added: svn:ignore
   + .installed.cfg
bin
develop-eggs
dist
docs
parts

Added: svn:mergeinfo
   + 

Deleted: z3c.feature.core/tags/0.1.1/CHANGES.txt
===================================================================
--- z3c.feature.core/trunk/CHANGES.txt	2009-03-27 11:36:44 UTC (rev 98419)
+++ z3c.feature.core/tags/0.1.1/CHANGES.txt	2009-03-27 12:42:04 UTC (rev 98421)
@@ -1,12 +0,0 @@
-=======
-CHANGES
-=======
-
-Version 0.2.0 (2009-??-??)
---------------------------
-
-
-Version 0.1.0 (2009-03-27)
---------------------------
-
-- Initial Release

Copied: z3c.feature.core/tags/0.1.1/CHANGES.txt (from rev 98420, z3c.feature.core/trunk/CHANGES.txt)
===================================================================
--- z3c.feature.core/tags/0.1.1/CHANGES.txt	                        (rev 0)
+++ z3c.feature.core/tags/0.1.1/CHANGES.txt	2009-03-27 12:42:04 UTC (rev 98421)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+Version 0.1.1 (2009-03-27)
+--------------------------
+
+- Initial Release

Deleted: z3c.feature.core/tags/0.1.1/setup.py
===================================================================
--- z3c.feature.core/trunk/setup.py	2009-03-27 11:36:44 UTC (rev 98419)
+++ z3c.feature.core/tags/0.1.1/setup.py	2009-03-27 12:42:04 UTC (rev 98421)
@@ -1,76 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2009 Paul Carduner and Stephan Richter.
-# 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.
-#
-##############################################################################
-"""Setup"""
-import os
-import xml.sax.saxutils
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-    text = unicode(text, 'utf-8').encode('ascii', 'xmlcharrefreplace')
-    return xml.sax.saxutils.escape(text)
-
-setup (
-    name = 'z3c.feature.core',
-    version = '0.2.0dev',
-    author = u"Paul Carduner and Stephan Richter",
-    author_email = u"zope-dev at zope.org",
-    description = u"Core Features to use with z3c.builder.core",
-    long_description=(
-        read('README.txt')
-        +"\n\n"+
-        read('CHANGES.txt')
-        ),
-    license = "ZPL",
-    keywords = u"zope3 project builder feature",
-    url = "http://pypi.python.org/pypi/z3c.feature.core",
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['z3c','z3c.feature'],
-    extras_require = {
-        'test':[
-            'zope.testing',
-            'z3c.coverage',
-            ],
-        },
-    install_requires = [
-        'setuptools',
-        'z3c.builder.core',
-        ],
-    zip_safe = False,
-    entry_points = """
-    [z3c.boiler.template]
-    command-line = z3c.feature.core.template:CommandLineProjectTemplate
-    python-package = z3c.feature.core.template:PythonPackageProjectTemplate
-
-    [z3c.feature]
-    meta-data = z3c.feature.core.metadata:MetaDataFeature
-    comment-header-ZPL = z3c.feature.core.metadata:CommentHeaderZPLFeature
-    proprietary-header = z3c.feature.core.metadata:ProprietaryHeaderFeature
-    python-interpreter = z3c.feature.core.python:PythonInterpreterFeature
-    script = z3c.feature.core.python:ScriptFeature
-    unit-testing = z3c.feature.core.unittest:TestingFeature
-    documentation = z3c.feature.core.metadata:DocumentationFeature
-
-    [z3c.builderweb]
-    meta-data = z3c.feature.core.web.metadata:MetaDataWebFeature
-    comment-header-ZPL = z3c.feature.core.web.metadata:CommentHeaderZPLWebFeature
-    proprietary-header = z3c.feature.core.web.metadata:ProprietaryHeaderWebFeature
-    python-interpreter = z3c.feature.core.web.python:PythonInterpreterWebFeature
-    script = z3c.feature.core.web.python:ScriptWebFeature
-    unit-testing = z3c.feature.core.web.unittest:TestingWebFeature
-    documentation = z3c.feature.core.web.metadata:DocumentationWebFeature
-    """,
-    )

Copied: z3c.feature.core/tags/0.1.1/setup.py (from rev 98420, z3c.feature.core/trunk/setup.py)
===================================================================
--- z3c.feature.core/tags/0.1.1/setup.py	                        (rev 0)
+++ z3c.feature.core/tags/0.1.1/setup.py	2009-03-27 12:42:04 UTC (rev 98421)
@@ -0,0 +1,76 @@
+##############################################################################
+#
+# Copyright (c) 2009 Paul Carduner and Stephan Richter.
+# 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.
+#
+##############################################################################
+"""Setup"""
+import os
+import xml.sax.saxutils
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    text = unicode(text, 'utf-8').encode('ascii', 'xmlcharrefreplace')
+    return xml.sax.saxutils.escape(text)
+
+setup (
+    name = 'z3c.feature.core',
+    version = '0.1.1',
+    author = u"Paul Carduner and Stephan Richter",
+    author_email = u"zope-dev at zope.org",
+    description = u"Core Features to use with z3c.builder.core",
+    long_description=(
+        read('README.txt')
+        +"\n\n"+
+        read('CHANGES.txt')
+        ),
+    license = "ZPL",
+    keywords = u"zope3 project builder feature",
+    url = "http://pypi.python.org/pypi/z3c.feature.core",
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['z3c','z3c.feature'],
+    extras_require = {
+        'test':[
+            'zope.testing',
+            'z3c.coverage',
+            ],
+        },
+    install_requires = [
+        'setuptools',
+        'z3c.builder.core',
+        ],
+    zip_safe = False,
+    entry_points = """
+    [z3c.boiler.template]
+    command-line = z3c.feature.core.template:CommandLineProjectTemplate
+    python-package = z3c.feature.core.template:PythonPackageProjectTemplate
+
+    [z3c.feature]
+    meta-data = z3c.feature.core.metadata:MetaDataFeature
+    comment-header-ZPL = z3c.feature.core.metadata:CommentHeaderZPLFeature
+    proprietary-header = z3c.feature.core.metadata:ProprietaryHeaderFeature
+    python-interpreter = z3c.feature.core.python:PythonInterpreterFeature
+    script = z3c.feature.core.python:ScriptFeature
+    unit-testing = z3c.feature.core.unittest:TestingFeature
+    documentation = z3c.feature.core.metadata:DocumentationFeature
+
+    [z3c.builderweb]
+    meta-data = z3c.feature.core.web.metadata:MetaDataWebFeature
+    comment-header-ZPL = z3c.feature.core.web.metadata:CommentHeaderZPLWebFeature
+    proprietary-header = z3c.feature.core.web.metadata:ProprietaryHeaderWebFeature
+    python-interpreter = z3c.feature.core.web.python:PythonInterpreterWebFeature
+    script = z3c.feature.core.web.python:ScriptWebFeature
+    unit-testing = z3c.feature.core.web.unittest:TestingWebFeature
+    documentation = z3c.feature.core.web.metadata:DocumentationWebFeature
+    """,
+    )



More information about the Checkins mailing list