[Checkins] SVN: Interface/trunk/ project structure

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


Log message for revision 76336:
  project structure
  

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

-=-

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

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



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

Added: Interface/trunk/setup.py
===================================================================
--- Interface/trunk/setup.py	                        (rev 0)
+++ Interface/trunk/setup.py	2007-06-04 21:41:17 UTC (rev 76336)
@@ -0,0 +1,37 @@
+##############################################################################
+#
+# 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 Interface egg
+"""
+import os
+from setuptools import setup, find_packages, Extension
+
+setup(name='Interface',
+      version = '2.11.0a1',
+      url='http://svn.zope.org/Interface',
+      license='ZPL 2.1',
+      description='Interface implementation',
+      author='Zope Corporation and Contributors',
+      author_email='zope-dev at zope.org',
+      long_description="""\
+This package provides an interface implementation for Python as it was
+used in Zope 2.  Unless you need it for legacy Zope 2 applications,
+you probably want to use the more modern zope.interface package.""",
+
+	  packages=find_packages('src'),
+	  package_dir={'': 'src'},
+
+      install_requires=['zope.interface'],
+      include_package_data=True,
+      zip_safe=False,
+      )


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


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




More information about the Checkins mailing list