[Checkins] SVN: zc.twist/trunk/ buildoutify and eggify zc.twist

Benji York benji at zope.com
Thu Jun 28 16:06:34 EDT 2007


Log message for revision 77190:
  buildoutify and eggify zc.twist
  

Changed:
  _U  zc.twist/trunk/
  A   zc.twist/trunk/buildout.cfg
  A   zc.twist/trunk/setup.py
  A   zc.twist/trunk/src/zc/__init__.py

-=-

Property changes on: zc.twist/trunk
___________________________________________________________________
Name: svn:ignore
   + develop-eggs
bin
parts
.installed.cfg


Added: zc.twist/trunk/buildout.cfg
===================================================================
--- zc.twist/trunk/buildout.cfg	                        (rev 0)
+++ zc.twist/trunk/buildout.cfg	2007-06-28 20:06:33 UTC (rev 77190)
@@ -0,0 +1,22 @@
+[buildout]
+parts =
+    interpreter
+    test
+
+develop = .
+
+find-links =
+    http://download.zope.org/distribution
+
+extensions = zc.buildoutsftp
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zc.twist
+defaults = '--tests-pattern [fn]?tests --exit-with-status -1'.split()
+working-directory = ${buildout:directory}
+
+[interpreter]
+recipe = zc.recipe.egg
+eggs = zc.twist
+interpreter = py

Added: zc.twist/trunk/setup.py
===================================================================
--- zc.twist/trunk/setup.py	                        (rev 0)
+++ zc.twist/trunk/setup.py	2007-06-28 20:06:33 UTC (rev 77190)
@@ -0,0 +1,23 @@
+import os
+
+from setuptools import setup, find_packages
+
+setup(
+    name='zc.twist',
+    version='0.1',
+    packages=find_packages('src'),
+    package_dir={'':'src'},
+    url='http://svn.zope.org/zc.twist',
+    zip_safe=False,
+    author='Gary Poster',
+    description='Mixing Twisted and ZODB',
+    license='ZPL',
+    install_requires=[
+        'ZODB3 ==3.7',
+        'zope.component',
+        'setuptools',
+        'twisted ==2.1dev',
+        'zope.testing',
+        ],
+    include_package_data=True,
+    )


Property changes on: zc.twist/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Added: zc.twist/trunk/src/zc/__init__.py
===================================================================
--- zc.twist/trunk/src/zc/__init__.py	                        (rev 0)
+++ zc.twist/trunk/src/zc/__init__.py	2007-06-28 20:06:33 UTC (rev 77190)
@@ -0,0 +1,7 @@
+# this is a namespace package
+try:
+    import pkg_resources
+    pkg_resources.declare_namespace(__name__)
+except ImportError:
+    import pkgutil
+    __path__ = pkgutil.extend_path(__path__, __name__)


Property changes on: zc.twist/trunk/src/zc/__init__.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Checkins mailing list