[Checkins] SVN: Sandbox/darrylcousins/mars.formdemo/ Updates to get this old code working again

Darryl Cousins darryl at darrylcousins.net.nz
Sat Feb 9 21:16:53 EST 2008


Log message for revision 83685:
  Updates to get this old code working again

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

-=-
Modified: Sandbox/darrylcousins/mars.formdemo/buildout.cfg
===================================================================
--- Sandbox/darrylcousins/mars.formdemo/buildout.cfg	2008-02-10 02:16:23 UTC (rev 83684)
+++ Sandbox/darrylcousins/mars.formdemo/buildout.cfg	2008-02-10 02:16:53 UTC (rev 83685)
@@ -1,19 +1,17 @@
 [buildout]
 develop = .
 parts = demo 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
 eggs = mars.formdemo [app, test]
 
-[zope3]
-location = .
-
 [form-demo-app]
 recipe = zc.zope3recipes:app
 site.zcml = <include package="mars.formdemo" file="application.zcml" />

Modified: Sandbox/darrylcousins/mars.formdemo/setup.py
===================================================================
--- Sandbox/darrylcousins/mars.formdemo/setup.py	2008-02-10 02:16:23 UTC (rev 83684)
+++ Sandbox/darrylcousins/mars.formdemo/setup.py	2008-02-10 02:16:53 UTC (rev 83685)
@@ -18,14 +18,20 @@
 This package uses martian to reproduce and imitiate z3c.formdemo
 as a experiment in using mars packages to configure zope apps""",
     long_description=(
-        read('src/mars/formdemo/README.txt')
+        read('mars/formdemo/README.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(
         app = ['z3c.formdemo',
                ],



More information about the Checkins mailing list