14 lines
450 B
Python
14 lines
450 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
from os.path import dirname
|
|
__author__ = u'Artur Barseghyan'
|
|
__copyright__ = u'2013-2019 Artur Barseghyan'
|
|
__license__ = u'MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later'
|
|
__all__ = (u'DEBUG', u'NAMES_LOCAL_PATH_PARENT')
|
|
NAMES_LOCAL_PATH_PARENT = dirname(__file__)
|
|
DEBUG = False
|