summaryrefslogtreecommitdiffstats
path: root/test/__init__.py
blob: 314450e995d675f974ba5e7002ccf9dd99f3e19e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-
"""Add the top-level module to the PYTHONPATH."""

__author__ = 'Diego Elio Pettenò'
__email__ = 'flameeyes@flameeyes.com'
__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__))))