From 9bbe18b6fe9b8691ce59950a7ed9d18f6540e672 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Benoi=CC=82t=20Pin?= <pin@cri.ensmp.fr>
Date: Mon, 22 Dec 2014 17:54:44 +0100
Subject: [PATCH] eggification

---
 .../ZTUtils_hotfix/README.txt                   |  0
 .../ZTUtils_hotfix/__init__.py                  |  0
 Products/__init__.py                            |  5 +++++
 setup.py                                        | 17 +++++++++++++++++
 4 files changed, 22 insertions(+)
 rename README.txt => Products/ZTUtils_hotfix/README.txt (100%)
 rename __init__.py => Products/ZTUtils_hotfix/__init__.py (100%)
 create mode 100644 Products/__init__.py
 create mode 100644 setup.py

diff --git a/README.txt b/Products/ZTUtils_hotfix/README.txt
similarity index 100%
rename from README.txt
rename to Products/ZTUtils_hotfix/README.txt
diff --git a/__init__.py b/Products/ZTUtils_hotfix/__init__.py
similarity index 100%
rename from __init__.py
rename to Products/ZTUtils_hotfix/__init__.py
diff --git a/Products/__init__.py b/Products/__init__.py
new file mode 100644
index 0000000..d407605
--- /dev/null
+++ b/Products/__init__.py
@@ -0,0 +1,5 @@
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    from pkgutil import extend_path
+    __path__ = extend_path(__path__, __name__)
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..6aec88c
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+from setuptools import setup, find_packages
+
+
+setup(name='Products.ZTUtils_hotfix',
+      version='1.0',
+      description='Marshalling hotfix for ZTUtils',
+      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=[]
+      )
-- 
2.20.1