From 569bc67fa04b6b0accdaa4ba367ac3970f894d59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Launay?= Date: Wed, 23 Dec 2015 22:05:48 +0100 Subject: [PATCH] [Add] ajout du __init__.py --- app_gestion/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app_gestion/__init__.py diff --git a/app_gestion/__init__.py b/app_gestion/__init__.py new file mode 100644 index 0000000..6fb8540 --- /dev/null +++ b/app_gestion/__init__.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python +try: + import pkg_resources + pkg_resources.declare_namespace(__name__) +except ImportError: + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__)