# -*- 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=[]
      )
