X-Git-Url: https://scm.cri.minesparis.psl.eu/git/ZTUtils_hotfix.git/blobdiff_plain/65a58efbf6098c007eac625011cef38abeb2a9c0..9bbe18b6fe9b8691ce59950a7ed9d18f6540e672:/setup.py 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=[] + )