[Checkins] SVN: zope.bobo/trunk/ - Minimal eggification.

Tres Seaver tseaver at palladion.com
Thu Jul 26 16:15:51 EDT 2007


Log message for revision 78364:
   - Minimal eggification.

Changed:
  A   zope.bobo/trunk/README.txt
  A   zope.bobo/trunk/setup.py

-=-
Added: zope.bobo/trunk/README.txt
===================================================================
--- zope.bobo/trunk/README.txt	                        (rev 0)
+++ zope.bobo/trunk/README.txt	2007-07-26 20:15:50 UTC (rev 78364)
@@ -0,0 +1,16 @@
+************************
+zope.bobo Package Readme
+************************
+
+This package implements the minimal object publication used in
+Zope3, without extra Zopeish features such as the ZODB.
+
+.. contents::
+
+Releases
+********
+
+0.1 (2007-07-26)
+================
+
+Initial public release.


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

Added: zope.bobo/trunk/setup.py
===================================================================
--- zope.bobo/trunk/setup.py	                        (rev 0)
+++ zope.bobo/trunk/setup.py	2007-07-26 20:15:50 UTC (rev 78364)
@@ -0,0 +1,59 @@
+##############################################################################
+# Copyright (c) 2007 Zope Corporation 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 for zope.bobo package
+
+$Id$
+"""
+
+import os
+from setuptools import setup, find_packages
+
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+name = 'zope.bobo'
+setup(
+    name=name,
+    version = '0.1',
+    url='http://www.python.org/pypi/'+name,
+    license='ZPL 2.1',
+    description='Zope minimal object publishing',
+    author='Zope Corporation and Contributors',
+    author_email='zope3-dev at zope.org',
+    long_description=(
+        read('README.txt')
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('src', 'zope', 'bobo', 'README.txt')
+        + '\n' +
+        'Download\n'
+        '**********************\n'
+        ),
+    packages = find_packages('src'),
+    package_dir = {'': 'src'},
+
+    namespace_packages=['zope',],
+    tests_require = ['zope.testing'],
+    install_requires=['zope.interface',
+                      'zope.publisher',
+                      'zope.event',
+                      'zope.component',
+                      'zope.security',
+                      'setuptools',
+                      ],
+    include_package_data = True,
+    zip_safe = False,
+    )


Property changes on: zope.bobo/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Checkins mailing list