r2020 - in (5 files)

jinty-guest at users.alioth.debian.org jinty-guest at users.alioth.debian.org
Thu Jan 14 16:42:50 UTC 2010


    Date: Thursday, January 14, 2010 @ 16:42:48
  Author: jinty-guest
Revision: 2020

[svn-inject] Installing original source of bobo

Added:
  bobo/
  bobo/branches/
  bobo/branches/upstream/
  bobo/branches/upstream/current/
  bobo/branches/upstream/current/setup.py

Added: bobo/branches/upstream/current/setup.py
===================================================================
--- bobo/branches/upstream/current/setup.py	                        (rev 0)
+++ bobo/branches/upstream/current/setup.py	2010-01-14 16:42:48 UTC (rev 2020)
@@ -0,0 +1,59 @@
+##############################################################################
+#
+# Copyright 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.
+#
+##############################################################################
+name = 'bobo'
+version = '0.2.1'
+
+entry_points = """
+[console_scripts]
+bobo = boboserver:server
+
+[paste.app_factory]
+main = bobo:Application
+
+[paste.filter_app_factory]
+reload = boboserver:Reload
+debug = boboserver:Debug
+"""
+
+from ez_setup import use_setuptools
+use_setuptools()
+from setuptools import setup
+
+import sys
+
+if sys.version_info >= (2, 5):
+    install_requires = ['WebOb']
+else:
+    install_requires = ['WebOb', 'PasteDeploy', 'Paste']
+
+setup(
+    name = name,
+    version = version,
+    author = "Jim Fulton",
+    author_email = "jim at zope.com",
+    description = "Web application framework for the impatient",
+    license = "ZPL 2.1",
+    keywords = "WSGI",
+    url='http://www.python.org/pypi/'+name,
+    long_description=open('README.txt').read(),
+
+    py_modules = ['bobo', 'boboserver'],
+    package_dir = {'':'src'},
+    install_requires = install_requires,
+    entry_points = entry_points,
+    tests_require = [
+        'bobodoctestumentation >=%s, <%s.999' % (version, version),
+        'webtest', 'zope.testing'],
+    test_suite = 'bobodoctestumentation.tests.test_suite',
+    )


Property changes on: bobo/branches/upstream/current/setup.py
___________________________________________________________________
Added: svn:eol-style
   + native




More information about the pkg-zope-developers mailing list