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

Philipp von Weitershausen philikon at philikon.de
Mon Jun 4 08:41:52 EDT 2007


Log message for revision 76291:
  initial project structure
  

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

-=-

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

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



Added: tempstorage/trunk/buildout.cfg
===================================================================
--- tempstorage/trunk/buildout.cfg	                        (rev 0)
+++ tempstorage/trunk/buildout.cfg	2007-06-04 12:41:52 UTC (rev 76291)
@@ -0,0 +1,8 @@
+[buildout]
+develop = .
+parts = test
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = tempstorage

Added: tempstorage/trunk/setup.py
===================================================================
--- tempstorage/trunk/setup.py	                        (rev 0)
+++ tempstorage/trunk/setup.py	2007-06-04 12:41:52 UTC (rev 76291)
@@ -0,0 +1,33 @@
+##############################################################################
+#
+# 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='tempstorage',
+      version = '2.11.0a1',
+      url='http://svn.zope.org/tempstorage',
+      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'},
+
+      include_package_data=True,
+      zip_safe=False,
+      )


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


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




More information about the Checkins mailing list