--- /dev/null
+try:
+ __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+ from pkgutil import extend_path
+ __path__ = extend_path(__path__, __name__)
--- /dev/null
+# -*- coding: utf-8 -*-
+from setuptools import setup, find_packages
+
+
+setup(name='Products.MosaicDocument',
+ version='3.0',
+ description='MosaicDocument for Plinn content management framework',
+ url='http://plinn.org',
+ author="Benoît Pin – MINES ParisTech – Armines",
+ author_email="benoit.pin@mines-paristech.fr",
+ license="GPL",
+ packages=find_packages(),
+ include_package_data=True,
+ namespace_packages=['Products'],
+ zip_safe=False,
+ install_requires=[] #TODO
+ )