eggification master-egg
authorBenoît Pin <pin@cri.ensmp.fr>
Fri, 19 Dec 2014 16:11:03 +0000 (17:11 +0100)
committerBenoît Pin <pin@cri.ensmp.fr>
Fri, 19 Dec 2014 16:11:03 +0000 (17:11 +0100)
Products/FakeMailHost/FakeMailHost.py [moved from FakeMailHost.py with 100% similarity]
Products/FakeMailHost/__init__.py [moved from __init__.py with 100% similarity]
Products/FakeMailHost/www/MailHost_icon.gif [moved from www/MailHost_icon.gif with 100% similarity]
Products/FakeMailHost/www/addFakeMailHost_form.dtml [moved from www/addFakeMailHost_form.dtml with 100% similarity]
Products/FakeMailHost/www/manageFakeMailHost.dtml [moved from www/manageFakeMailHost.dtml with 100% similarity]
Products/__init__.py [new file with mode: 0644]
setup.py [new file with mode: 0644]

diff --git a/Products/__init__.py b/Products/__init__.py
new file mode 100644 (file)
index 0000000..d407605
--- /dev/null
@@ -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 (file)
index 0000000..932b68f
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+from setuptools import setup, find_packages
+
+
+setup(name='Products.FakeMailHost',
+      version='3.0',
+      description='Product that create Zope File objects instead of sending mail for debbuging purpose',
+      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
+      )