# -*- coding: utf-8 -*-
from setuptools import setup, find_packages


setup(name='Products.Plinn',
      version='3.0',
      description='Plinn content management framework',
      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
      )
