[Checkins] SVN: Sandbox/darrylcousins/mars.adapter/ Updated buildout, using zope3 KGS and mixing in Grok and Martian

Darryl Cousins darryl at darrylcousins.net.nz
Sat Feb 9 20:54:10 EST 2008


Log message for revision 83678:
  Updated buildout, using zope3 KGS and mixing in Grok and Martian

Changed:
  U   Sandbox/darrylcousins/mars.adapter/buildout.cfg
  U   Sandbox/darrylcousins/mars.adapter/setup.py

-=-
Modified: Sandbox/darrylcousins/mars.adapter/buildout.cfg
===================================================================
--- Sandbox/darrylcousins/mars.adapter/buildout.cfg	2008-02-09 23:20:23 UTC (rev 83677)
+++ Sandbox/darrylcousins/mars.adapter/buildout.cfg	2008-02-10 01:54:09 UTC (rev 83678)
@@ -1,11 +1,12 @@
 [buildout]
 develop = .
 parts = test
-extends = http://grok.zope.org/releaseinfo/grok-0.11.1.cfg
+extends = http://download.zope.org/zope3.4/versions-3.4.0c1.cfg
 versions = versions
 
 [versions]
-martian = 0.9.2
+grok = 0.12dev
+martian = 0.9.3
 
 [test]
 recipe = zc.recipe.testrunner

Modified: Sandbox/darrylcousins/mars.adapter/setup.py
===================================================================
--- Sandbox/darrylcousins/mars.adapter/setup.py	2008-02-09 23:20:23 UTC (rev 83677)
+++ Sandbox/darrylcousins/mars.adapter/setup.py	2008-02-10 01:54:09 UTC (rev 83678)
@@ -12,21 +12,28 @@
     url='http://www.tfws.org.nz/mars',
     description="""\
 This package uses ``martian`` and ``grok`` to register simple adapters
-for applications built on the ``zope`` framework.""",
+for applications built on the ``zope3`` framework.""",
     long_description=(
-        read('src/mars/adapter/README.txt') +
+        read('mars/adapter/README.txt') +
         read('CHANGES.txt')
         ),
-    packages=find_packages('src'),
-    package_dir = {'': 'src'},
-    include_package_data = True,
-    zip_safe=False,
+    classifiers = ['Development Status :: 1 - Planning',
+                    'Intended Audience :: Developers',
+                    'License :: Other/Proprietary License',
+                    'Programming Language :: Python',
+                    'Operating System :: OS Independent',
+                    'Topic :: Software Development :: Build Tools',
+                    'Framework :: Zope3',
+                    ],
+    packages=find_packages(),
+    namespace_packages=['mars'],
+    zip_safe=True,
     license='ZPL',
-    dependency_links = ['http://download.zope.org/distribution'],
     extras_require = dict(
                 test=['zope.app.testing']),
     install_requires = [
         'setuptools',
+        'zc.buildout',
         'grok',
         ],
 )



More information about the Checkins mailing list