From: Benoît Pin Date: Fri, 19 Dec 2014 15:44:02 +0000 (+0100) Subject: Implémentation setup.py. X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/commitdiff_plain/2ba84a8bde68ebfe348f97224a88cb39a8954eef Implémentation setup.py. --- 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..36ba6c8 --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +from setuptools import setup, find_packages + + +setup(name='Products.ckeditor', + version='4.0', + description='CKEditor for Plinn', + 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 + )