[Checkins] SVN: Sandbox/baijum/bluebream/trunk/ - Add license header

Baiju M baiju.m.mail at gmail.com
Sat Jan 2 04:59:46 EST 2010


Log message for revision 107535:
  - Add license header
  - Changelog file
  

Changed:
  A   Sandbox/baijum/bluebream/trunk/CHANGES.txt
  U   Sandbox/baijum/bluebream/trunk/README.txt
  U   Sandbox/baijum/bluebream/trunk/setup.py
  U   Sandbox/baijum/bluebream/trunk/src/bluebream/script.py
  U   Sandbox/baijum/bluebream/trunk/src/bluebream/template.py

-=-
Added: Sandbox/baijum/bluebream/trunk/CHANGES.txt
===================================================================
--- Sandbox/baijum/bluebream/trunk/CHANGES.txt	                        (rev 0)
+++ Sandbox/baijum/bluebream/trunk/CHANGES.txt	2010-01-02 09:59:45 UTC (rev 107535)
@@ -0,0 +1,7 @@
+Changelog
+*********
+
+0.1.0 (2010-01-02)
+------------------
+
+- Initial release.

Modified: Sandbox/baijum/bluebream/trunk/README.txt
===================================================================
--- Sandbox/baijum/bluebream/trunk/README.txt	2010-01-02 09:59:02 UTC (rev 107534)
+++ Sandbox/baijum/bluebream/trunk/README.txt	2010-01-02 09:59:45 UTC (rev 107535)
@@ -1,4 +1,4 @@
 BlueBream
-=========
+*********
 
 Script to setup a Zope project directory.

Modified: Sandbox/baijum/bluebream/trunk/setup.py
===================================================================
--- Sandbox/baijum/bluebream/trunk/setup.py	2010-01-02 09:59:02 UTC (rev 107534)
+++ Sandbox/baijum/bluebream/trunk/setup.py	2010-01-02 09:59:45 UTC (rev 107535)
@@ -1,5 +1,23 @@
+##############################################################################
+#
+# Copyright (c) 2010 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
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
     name="bluebream",
     version="0.1dev",
@@ -8,7 +26,14 @@
     url="https://launchpad.net/grokproject",
     download_url="http://pypi.python.org/pypi/grokproject",
     description="Script to setup a Zope project directory.",
-    license="Simplified BSD License",
+    long_description=(
+        read('README.txt') 
+        + '\n\n' +
+        read('CHANGES.txt')
+        + '\n\n' +
+        'Download\n'
+        '********'),
+    license="Zope Public License",
     packages=find_packages("src"),
     package_dir={"": "src"},
     zip_safe=False,

Modified: Sandbox/baijum/bluebream/trunk/src/bluebream/script.py
===================================================================
--- Sandbox/baijum/bluebream/trunk/src/bluebream/script.py	2010-01-02 09:59:02 UTC (rev 107534)
+++ Sandbox/baijum/bluebream/trunk/src/bluebream/script.py	2010-01-02 09:59:45 UTC (rev 107535)
@@ -1,2 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2010 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.
+#
+##############################################################################
+
 def main():
     pass

Modified: Sandbox/baijum/bluebream/trunk/src/bluebream/template.py
===================================================================
--- Sandbox/baijum/bluebream/trunk/src/bluebream/template.py	2010-01-02 09:59:02 UTC (rev 107534)
+++ Sandbox/baijum/bluebream/trunk/src/bluebream/template.py	2010-01-02 09:59:45 UTC (rev 107535)
@@ -1,6 +1,21 @@
+##############################################################################
+#
+# Copyright (c) 2010 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.
+#
+##############################################################################
+
 from paste.script import templates
 from paste.script.templates import var
 
+
 class BlueBream(templates.Template):
 
     _template_dir = 'project_template'



More information about the checkins mailing list