From: Benoît Pin Date: Thu, 18 Dec 2014 17:34:24 +0000 (+0100) Subject: Ajout script d'installation. X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/commitdiff_plain/e32a4c0d01e4996946b6da15868e86678f0e4b31?ds=sidebyside Ajout script d'installation. --- diff --git a/Products/__init__.py b/Products/__init__.py new file mode 100644 index 0000000..d407605 --- /dev/null +++ b/Products/__init__.py @@ -0,0 +1,5 @@ +try: + __import__('pkg_resources').declare_namespace(__name__) +except ImportError: + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__) 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 + )