X-Git-Url: https://scm.cri.ensmp.fr/git/FakeMailHost.git/blobdiff_plain/877050bf69ae69eab272021ab648578599d2aaab..e1da9933637ad0ddd5ce68c1af47cb7763bd5e99:/setup.py?ds=sidebyside diff --git a/setup.py b/setup.py new file mode 100644 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 + )