[z3-checkins] r28833 - in z3/hurry.file/trunk: . src
faassen at codespeak.net
faassen at codespeak.net
Thu Jun 15 17:51:40 CEST 2006
Author: faassen
Date: Thu Jun 15 17:51:39 2006
New Revision: 28833
Added:
z3/hurry.file/trunk/setup.py
Modified:
z3/hurry.file/trunk/ (props changed)
z3/hurry.file/trunk/src/ (props changed)
Log:
eggification work.
Added: z3/hurry.file/trunk/setup.py
==============================================================================
--- (empty file)
+++ z3/hurry.file/trunk/setup.py Thu Jun 15 17:51:39 2006
@@ -0,0 +1,25 @@
+from setuptools import setup, find_packages
+
+setup(
+ name="hurry.file",
+ version="0.9",
+ packages=find_packages('src', exclude=["*.tests", "*.ftests"]),
+
+ package_dir= {'':'src'},
+
+ namespace_packages=['hurry'],
+ package_data = {
+ '': ['*.txt', '*.zcml'],
+ },
+
+ zip_safe=False,
+ author='Infrae',
+ author_email='faassen at infrae.com',
+ description="""\
+hurry.file is an advanced Zope 3 file widget which tries its best to behave
+like other widgets, even when the form is redisplayed due to a validation
+error.
+""",
+ license='BSD',
+ keywords="zope zope3",
+ )
More information about the z3-checkins
mailing list