[Checkins] SVN: zc.datetimewidget/trunk/s Eggify this package.

Martijn Faassen faassen at infrae.com
Wed May 24 11:54:18 EDT 2006


Log message for revision 68262:
  Eggify this package.
  

Changed:
  A   zc.datetimewidget/trunk/setup.py
  A   zc.datetimewidget/trunk/src/zc/__init__.py

-=-
Added: zc.datetimewidget/trunk/setup.py
===================================================================
--- zc.datetimewidget/trunk/setup.py	2006-05-24 15:53:58 UTC (rev 68261)
+++ zc.datetimewidget/trunk/setup.py	2006-05-24 15:54:17 UTC (rev 68262)
@@ -0,0 +1,33 @@
+from setuptools import setup, find_packages
+
+setup(
+    name="zc.datetimewidget",
+    version="0.5",
+    install_requires=['zc.resourcelibrary >= 0.5',
+                      'zc.i18n >= 0.5'],
+    dependency_links=['http://download.zope.org/distribution/',],
+  
+    packages=find_packages('src', exclude=["*.tests", "*.ftests"]),
+    
+    package_dir= {'':'src'},
+    
+    namespace_packages=['zc'],
+
+    package_data = {
+    '': ['*.txt', '*.zcml', '*.gif', '*.js'],
+    'zc.datetimewidget': ['resources/*.css',
+                          'resources/*.js',
+                          'resources/*.gif',
+                          'resources/lang/*'],
+    },
+
+    zip_safe=False,
+    author='Zope Project',
+    author_email='zope3-dev at zope.org',
+    description="""\
+zc.datetimewidget has improved javascript based widgets for the entry of date
+and datetime information.
+""",
+    license='ZPL',
+    keywords="zope zope3",
+    )

Added: zc.datetimewidget/trunk/src/zc/__init__.py
===================================================================
--- zc.datetimewidget/trunk/src/zc/__init__.py	2006-05-24 15:53:58 UTC (rev 68261)
+++ zc.datetimewidget/trunk/src/zc/__init__.py	2006-05-24 15:54:17 UTC (rev 68262)
@@ -0,0 +1,5 @@
+# this is a namespace package
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    pass



More information about the Checkins mailing list