[Checkins] SVN: Persistence/trunk/ initial project structure

Philipp von Weitershausen philikon at philikon.de
Mon Jun 4 11:30:51 EDT 2007


Log message for revision 76308:
  initial project structure
  

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

-=-

Property changes on: Persistence/trunk
___________________________________________________________________
Name: svn:ignore
   + eggs
develop-eggs
parts
bin
.installed.cfg
build
dist

Name: svn:externals
   + bootstrap       svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap



Added: Persistence/trunk/buildout.cfg
===================================================================
--- Persistence/trunk/buildout.cfg	                        (rev 0)
+++ Persistence/trunk/buildout.cfg	2007-06-04 15:30:50 UTC (rev 76308)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = Persistence


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


Added: Persistence/trunk/setup.py
===================================================================
--- Persistence/trunk/setup.py	                        (rev 0)
+++ Persistence/trunk/setup.py	2007-06-04 15:30:50 UTC (rev 76308)
@@ -0,0 +1,39 @@
+##############################################################################
+#
+# 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='Persistence',
+      version = '2.11.0a1',
+      url='http://svn.zope.org/Persistence',
+      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("Persistence._Persistence",
+                             [os.path.join('src', 'Persistence',
+                                           '_Persistence.c')],
+                             include_dirs=['include', 'src']),
+                   ],
+      install_requires=['ExtensionClass', 'ZODB3'],
+      include_package_data=True,
+      zip_safe=False,
+      )


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


Property changes on: Persistence/trunk/src
___________________________________________________________________
Name: svn:ignore
   + Persistence.egg-info

Name: svn:externals
   + Persistence  svn://svn.zope.org/repos/main/Zope/trunk/lib/python/Persistence





More information about the Checkins mailing list