[Zope3-checkins] SVN: zope.formlib/trunk/ Added Buildout support
Baiju M
baiju.m.mail at gmail.com
Fri Mar 9 06:16:59 EST 2007
Log message for revision 73110:
Added Buildout support
Changed:
_U zope.formlib/trunk/
UU zope.formlib/trunk/bootstrap.py
A zope.formlib/trunk/buildout.cfg
U zope.formlib/trunk/setup.py
-=-
Property changes on: zope.formlib/trunk
___________________________________________________________________
Name: svn:ignore
- bin
build
dist
lib
setup.cfg
+ bin
build
dist
lib
develop-eggs
eggs
parts
.installed.cfg
Modified: zope.formlib/trunk/bootstrap.py
===================================================================
--- zope.formlib/trunk/bootstrap.py 2007-03-09 11:05:58 UTC (rev 73109)
+++ zope.formlib/trunk/bootstrap.py 2007-03-09 11:16:58 UTC (rev 73110)
@@ -17,7 +17,7 @@
The script accepts buildout command-line options, so you can
use the -c option to specify an alternate configuration file.
-$Id: bootstrap.py 72703 2007-02-20 11:49:26Z jim $
+$Id$
"""
import os, shutil, sys, tempfile, urllib2
Property changes on: zope.formlib/trunk/bootstrap.py
___________________________________________________________________
Name: svn:keywords
+ Id
Added: zope.formlib/trunk/buildout.cfg
===================================================================
--- zope.formlib/trunk/buildout.cfg 2007-03-09 11:05:58 UTC (rev 73109)
+++ zope.formlib/trunk/buildout.cfg 2007-03-09 11:16:58 UTC (rev 73110)
@@ -0,0 +1,10 @@
+[buildout]
+develop = .
+parts = test
+
+find-links = http://download.zope.org/distribution/
+
+[test]
+recipe = zc.recipe.testrunner
+defaults = ['--tests-pattern', '^f?tests$']
+eggs = zope.formlib
Property changes on: zope.formlib/trunk/buildout.cfg
___________________________________________________________________
Name: svn:eol-style
+ native
Modified: zope.formlib/trunk/setup.py
===================================================================
--- zope.formlib/trunk/setup.py 2007-03-09 11:05:58 UTC (rev 73109)
+++ zope.formlib/trunk/setup.py 2007-03-09 11:16:58 UTC (rev 73110)
@@ -37,7 +37,8 @@
namespace_packages=['zope',],
tests_require = ['zope.testing'],
- install_requires=['zope.interface',
+ install_requires=['setuptools',
+ 'zope.interface',
'zope.schema',
'zope.component',
'zope.publisher',
More information about the Zope3-Checkins
mailing list