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

Benji York benji at zope.com
Fri Jun 29 08:03:08 EDT 2007


Log message for revision 77241:
  buildoutify and eggify zc.async
  

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

-=-

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


Added: zc.async/trunk/buildout.cfg
===================================================================
--- zc.async/trunk/buildout.cfg	                        (rev 0)
+++ zc.async/trunk/buildout.cfg	2007-06-29 12:03:07 UTC (rev 77241)
@@ -0,0 +1,23 @@
+[buildout]
+parts =
+    interpreter
+    test
+
+develop = .
+
+find-links =
+    http://download.zope.org/distribution
+    sftp://yum.zope.com/private
+
+extensions = zc.buildoutsftp
+
+[test]
+recipe = zc.recipe.testrunner
+eggs = zc.async
+defaults = '--tests-pattern [fn]?tests --exit-with-status -1'.split()
+working-directory = ${buildout:directory}
+
+[interpreter]
+recipe = zc.recipe.egg
+eggs = zc.async
+interpreter = py

Added: zc.async/trunk/setup.py
===================================================================
--- zc.async/trunk/setup.py	                        (rev 0)
+++ zc.async/trunk/setup.py	2007-06-29 12:03:07 UTC (rev 77241)
@@ -0,0 +1,33 @@
+import os
+
+from setuptools import setup, find_packages
+
+setup(
+    name='zc.async',
+    version='0.1',
+    packages=find_packages('src'),
+    package_dir={'':'src'},
+
+    url='http://svn.zope.org/zc.async',
+    zip_safe=False,
+    author='Gary Poster',
+    description='Perform durable tasks asynchronously',
+    license='ZPL',
+    install_requires=[
+        'ZODB3',
+        'pytz',
+        'rwproperty',
+        'twisted ==2.1dev',
+        'uuid',
+        'zc.queue',
+        'zc.set',
+        'zc.twist',
+        'zope.app.appsetup',
+        'zope.bforest',
+        'zope.component',
+        'zope.i18nmessageid',
+        'zope.interface',
+        'zope.testing',
+        ],
+    include_package_data=True,
+    )


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

Added: zc.async/trunk/src/zc/__init__.py
===================================================================
--- zc.async/trunk/src/zc/__init__.py	                        (rev 0)
+++ zc.async/trunk/src/zc/__init__.py	2007-06-29 12:03:07 UTC (rev 77241)
@@ -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.async/trunk/src/zc/__init__.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Checkins mailing list