diff options
Diffstat (limited to 'test/__init__.py')
-rw-r--r-- | test/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..8865d55 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +"""Add the top-level module to the PYTHONPATH.""" + +__author__ = 'Diego Elio Pettenò' +__email__ = 'flameeyes@flameeyes.eu' +__copyright__ = 'Copyright © 2018, Diego Elio Pettenò' +__license__ = 'MIT' + +import os +import sys + +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |