7 Module containing the default configuration of the eric6 installation. |
7 Module containing the default configuration of the eric6 installation. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 import sys |
|
13 import os |
12 import os |
14 |
13 |
15 __ericDir = os.path.dirname(sys.argv[0]) |
14 __ericDir = os.path.dirname(__file__) |
16 |
15 |
17 _pkg_config = { |
16 _pkg_config = { |
18 'ericDir': __ericDir, |
17 'ericDir': __ericDir, |
19 'ericPixDir': os.path.join(__ericDir, 'pixmaps'), |
18 'ericPixDir': os.path.join(__ericDir, 'pixmaps'), |
20 'ericIconDir': os.path.join(__ericDir, 'icons'), |
19 'ericIconDir': os.path.join(__ericDir, 'icons'), |