[Checkins] SVN: gocept.registration/tags/0.1.0/ create tag for upcoming first release.

Paul Carduner paulcarduner at gmail.com
Fri Mar 28 13:08:32 EDT 2008


Log message for revision 85000:
  create tag for upcoming first release.

Changed:
  A   gocept.registration/tags/0.1.0/
  A   gocept.registration/tags/0.1.0/CHANGES.txt
  D   gocept.registration/tags/0.1.0/setup.py
  A   gocept.registration/tags/0.1.0/setup.py

-=-
Copied: gocept.registration/tags/0.1.0 (from rev 84997, gocept.registration/trunk)

Copied: gocept.registration/tags/0.1.0/CHANGES.txt (from rev 84998, gocept.registration/trunk/CHANGES.txt)
===================================================================
--- gocept.registration/tags/0.1.0/CHANGES.txt	                        (rev 0)
+++ gocept.registration/tags/0.1.0/CHANGES.txt	2008-03-28 17:08:31 UTC (rev 85000)
@@ -0,0 +1,7 @@
+Changes
+=======
+
+0.1.0 (unreleased)
+------------------
+
+ * Initial release.
\ No newline at end of file

Deleted: gocept.registration/tags/0.1.0/setup.py
===================================================================
--- gocept.registration/trunk/setup.py	2008-03-28 16:23:23 UTC (rev 84997)
+++ gocept.registration/tags/0.1.0/setup.py	2008-03-28 17:08:31 UTC (rev 85000)
@@ -1,54 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2008 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.
-#
-##############################################################################
-
-import os.path
-
-from setuptools import setup, find_packages
-
-
-setup(
-    name = 'gocept.registration',
-    version = "0.1",
-    author = "Christian Theune, Stephan Richter and others",
-    author_email = "mail at gocept.com",
-    description = "User self-registration",
-    long_description = file(os.path.join(os.path.dirname(__file__),
-                                         'src', 'gocept', 'registration',
-                                         'README.txt')).read(),
-    license = "ZPL 2.1",
-    url='http://pypi.python.org/pypi/gocept.registration/',
-
-    packages = find_packages('src'),
-    package_dir = {'': 'src'},
-
-    include_package_data = True,
-    zip_safe = False,
-
-    namespace_packages = ['gocept'],
-    install_requires = [
-        'setuptools',
-        'zope.app.container',
-        'zope.component',
-        'zope.interface',
-        'zope.sendmail',
-        'z3c.form'
-    ],
-    extras_require = dict(
-        test=['zope.testing',
-              'zope.app.twisted',
-              'zope.app.securitypolicy',
-              'zope.testbrowser',
-              'z3c.formui',
-              'z3c.layer'])
-    )

Copied: gocept.registration/tags/0.1.0/setup.py (from rev 84998, gocept.registration/trunk/setup.py)
===================================================================
--- gocept.registration/tags/0.1.0/setup.py	                        (rev 0)
+++ gocept.registration/tags/0.1.0/setup.py	2008-03-28 17:08:31 UTC (rev 85000)
@@ -0,0 +1,73 @@
+##############################################################################
+#
+# Copyright (c) 2008 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.
+#
+##############################################################################
+
+import os.path
+
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+
+setup(
+    name = 'gocept.registration',
+    version = "0.1.0dev",
+    author = "Christian Theune, Stephan Richter and others",
+    author_email = "mail at gocept.com",
+    description = "User self-registration",
+    long_description = (read('README.txt')
+                        + '\n\n' +
+                        read('src', 'gocept', 'registration',
+                            'README.txt')
+                        + '\n\n' +
+                        read('CHANGES.txt')
+    ),
+    license = "ZPL 2.1",
+    url='http://pypi.python.org/pypi/gocept.registration/',
+    keywords = "zope3 gocept user registration",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        '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'],
+
+
+    packages = find_packages('src'),
+    package_dir = {'': 'src'},
+
+    include_package_data = True,
+    zip_safe = False,
+
+    namespace_packages = ['gocept'],
+    install_requires = [
+        'setuptools',
+        'zope.app.container',
+        'zope.component',
+        'zope.interface',
+        'zope.sendmail',
+        'z3c.form'
+    ],
+    extras_require = dict(
+        test=['zope.testing',
+              'zope.app.twisted',
+              'zope.app.securitypolicy',
+              'zope.testbrowser',
+              'z3c.formui',
+              'z3c.layer'])
+    )



More information about the Checkins mailing list