[Add] ajout du __init__.py
This commit is contained in:
parent
82044750a4
commit
569bc67fa0
|
|
@ -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__)
|
||||
Loading…
Reference in New Issue