[Checkins] SVN: zope.app.sqlexpr/trunk/ version bump

Roy Mathew roymath at yahoo.com
Fri Jul 24 15:05:07 EDT 2009


Log message for revision 102281:
  version bump
  

Changed:
  A   zope.app.sqlexpr/trunk/CHANGES.txt
  A   zope.app.sqlexpr/trunk/README.txt
  U   zope.app.sqlexpr/trunk/setup.py

-=-
Added: zope.app.sqlexpr/trunk/CHANGES.txt
===================================================================
--- zope.app.sqlexpr/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.sqlexpr/trunk/CHANGES.txt	2009-07-24 19:05:06 UTC (rev 102281)
@@ -0,0 +1,13 @@
+=======
+CHANGES
+=======
+
+Version 0.2 (unreleased)
+--------------------------
+
+- add notes here
+
+Version 0.1 (2009-07-24)
+--------------------------
+
+- Initial Release as an egg.

Added: zope.app.sqlexpr/trunk/README.txt
===================================================================
--- zope.app.sqlexpr/trunk/README.txt	                        (rev 0)
+++ zope.app.sqlexpr/trunk/README.txt	2009-07-24 19:05:06 UTC (rev 102281)
@@ -0,0 +1,4 @@
+The goal of the SQL TALES expression is to allow quick SQL queries
+right out of TALES expressions and Zope Page Templates. While this
+is certainly not the Zopeish way of doing things, it allows the
+newbie Web scripter an easier entrance to the world of Zope 3.

Modified: zope.app.sqlexpr/trunk/setup.py
===================================================================
--- zope.app.sqlexpr/trunk/setup.py	2009-07-24 19:03:30 UTC (rev 102280)
+++ zope.app.sqlexpr/trunk/setup.py	2009-07-24 19:05:06 UTC (rev 102281)
@@ -1,13 +1,54 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+"""Setup
+
+$Id$
+"""
 from setuptools import setup, find_packages
+import os
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
     name = 'zope.app.sqlexpr',
-    version = '0.1',
-    author = 'Zope Corporation and Contributors',
-    author_email = 'zope3-dev at zope.org',
-    description = '',
+    version = '0.2dev',
+    author = 'Stephan Richter and the Zope Community',
+    author_email = 'zope-dev at zope.org',
+    description = 'allow quick SQL queries in TALES expressions and Zope Page Templates',
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************\n\n' +
+        read('CHANGES.txt')
+        ),
     license = 'ZPL 2.1',
+    keywords = "zope3 sql zpt tales",
+    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'],
 
+    url = 'http://pypi.python.org/pypi/zope.app.sqlexpr',
+    include_package_data = True,
     packages = find_packages('src'),
     namespace_packages = ['zope', 'zope.app'],
     package_dir = {'': 'src'},



More information about the Checkins mailing list