X-Git-Url: https://scm.cri.minesparis.psl.eu/git/Plinn.git/blobdiff_plain/959d888c17d1403d2eeecc19bc4b5e2c8d1debf6..e32a4c0d01e4996946b6da15868e86678f0e4b31:/setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c3a7a25 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +from setuptools import setup, find_packages + + +setup(name='Products.Plinn', + version='3.0', + descripton='Plinn content management framework', + author="Benoît Pin – MINES ParisTech – Armines" + license="GPL", + packages=find_packages(), + include_package_data=True, + namespace_packages=['Products'], + zip_safe=False + )