[Checkins] SVN: ExtensionClass/trunk/ ExtensionClass eggification

Philipp von Weitershausen philikon at philikon.de
Sun Jun 3 11:07:09 EDT 2007


Log message for revision 76237:
  ExtensionClass eggification
  

Changed:
  _U  ExtensionClass/trunk/
  A   ExtensionClass/trunk/buildout.cfg
  A   ExtensionClass/trunk/setup.py
  A   ExtensionClass/trunk/src/

-=-

Property changes on: ExtensionClass/trunk
___________________________________________________________________
Name: svn:externals
   + bootstrap       svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap



Added: ExtensionClass/trunk/buildout.cfg
===================================================================
--- ExtensionClass/trunk/buildout.cfg	                        (rev 0)
+++ ExtensionClass/trunk/buildout.cfg	2007-06-03 15:07:08 UTC (rev 76237)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = ExtensionClass

Added: ExtensionClass/trunk/setup.py
===================================================================
--- ExtensionClass/trunk/setup.py	                        (rev 0)
+++ ExtensionClass/trunk/setup.py	2007-06-03 15:07:08 UTC (rev 76237)
@@ -0,0 +1,38 @@
+##############################################################################
+#
+# 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 the Acquisition egg package
+"""
+import os
+from setuptools import setup, find_packages, Extension
+
+setup(name='ExtensionClass',
+      version = '2.11.0a1',
+      url='http://svn.zope.org/ExtensionClass',
+      license='ZPL 2.1',
+      description='',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      long_description='',
+      
+	  packages=find_packages('src'),
+	  package_dir={'': 'src'},
+
+      ext_modules=[Extension("ExtensionClass._ExtensionClass",
+                             [os.path.join('src', 'ExtensionClass',
+                                           '_ExtensionClass.c')],
+                             include_dirs=['src']),
+                   ],
+      include_package_data=True,
+      zip_safe=False,
+      )


Property changes on: ExtensionClass/trunk/setup.py
___________________________________________________________________
Name: svn:eol-style
   + native


Property changes on: ExtensionClass/trunk/src
___________________________________________________________________
Name: svn:externals
   + ExtensionClass	svn://svn.zope.org/repos/main/Zope/trunk/lib/python/ExtensionClass




More information about the Checkins mailing list