[Checkins] SVN: z3c.blobfile/ - inital package setup

Grégoire Weber zope.org at incept.ch
Sat Nov 10 07:31:57 EST 2007


Log message for revision 81704:
  - inital package setup

Changed:
  A   z3c.blobfile/buildout.cfg
  A   z3c.blobfile/setup.py

-=-
Added: z3c.blobfile/buildout.cfg
===================================================================
--- z3c.blobfile/buildout.cfg	                        (rev 0)
+++ z3c.blobfile/buildout.cfg	2007-11-10 12:31:57 UTC (rev 81704)
@@ -0,0 +1,8 @@
+[buildout]
+#index = http//download.zope.org/zope3.4
+develop = .
+parts = test
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = z3c.blobfile [test]

Added: z3c.blobfile/setup.py
===================================================================
--- z3c.blobfile/setup.py	                        (rev 0)
+++ z3c.blobfile/setup.py	2007-11-10 12:31:57 UTC (rev 81704)
@@ -0,0 +1,78 @@
+##############################################################################
+#
+# 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 z3c.blobfile package
+
+$Id$
+"""
+import os
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(name='zope.app.file',
+      version='0.1.0dev',
+      author = "Zope Community",
+      author_email = "zope3-dev at zope.org",
+      license = "ZPL 2.1",
+      keywords = "zope3 ZODB blob file image content",
+      url='http://svn.zope.org/z3c.blobfile',
+      description='File and Image Using Blob Support of ZODB -- Zope 3 Content Components',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'file', 'browser', 'file.txt')
+          + '\n\n' +
+          read('src', 'zope', 'app', 'file', 'browser', 'url.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      classifiers = [
+          'Development Status :: 2 - Pre-Alpha',
+          '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'},
+      namespace_packages=['z3c',],
+      extras_require = dict(test=['zope.app.testing',
+                                  'zope.app.securitypolicy',
+                                  'zope.app.zcmlfiles',]),
+      install_requires=['setuptools',
+                        'ZODB3',
+                        'zope.app.publication',
+                        'zope.contenttype',
+                        'zope.datetime',
+                        'zope.dublincore',
+                        'zope.event',
+                        'zope.exceptions',
+                        'zope.i18nmessageid',
+                        'zope.interface',
+                        'zope.publisher',
+                        'zope.schema',
+                        'zope.size',
+                        ],
+      include_package_data = True,
+      zip_safe = False,
+      )
+



More information about the Checkins mailing list