[Checkins] SVN: zc.selenium/trunk/setup.py added setup.py for
buildout use
Christian Zagrodnick
cz at gocept.com
Wed Feb 7 04:24:50 EST 2007
Log message for revision 72410:
added setup.py for buildout use
Changed:
A zc.selenium/trunk/setup.py
-=-
Added: zc.selenium/trunk/setup.py
===================================================================
--- zc.selenium/trunk/setup.py 2007-02-07 06:20:13 UTC (rev 72409)
+++ zc.selenium/trunk/setup.py 2007-02-07 09:24:48 UTC (rev 72410)
@@ -0,0 +1,16 @@
+from setuptools import setup, find_packages
+
+setup(
+ name='zc.selenium',
+ version='trunk',
+ author='Zope Corporation',
+ author_email='info at zope.com',
+ url='http://svn.zope.org/zc.seleinum',
+ description="Selenium integration for Zope 3",
+ packages=find_packages('src'),
+ package_dir = {'': 'src'},
+ include_package_data=True,
+ zip_safe=False,
+ license='ZPL 2.1',
+ install_requires=[],
+ )
Property changes on: zc.selenium/trunk/setup.py
___________________________________________________________________
Name: svn:keywords
+ 'Id Rev Date'
Name: svn:eol-style
+ native
More information about the Checkins
mailing list