[Add] ajout du __init__.py

This commit is contained in:
Jérome Launay 2015-12-23 22:05:48 +01:00
parent 82044750a4
commit 569bc67fa0
1 changed files with 7 additions and 0 deletions

7
app_gestion/__init__.py Normal file
View File

@ -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__)