-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
48 lines (39 loc) · 1.31 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from pathlib import Path
# Get correct path
import sys
import os
if getattr(sys, 'frozen', False):
cur_path = os.path.dirname(sys.executable)
else:
cur_path = str(os.path.dirname(__file__))
home_path = str(Path.home())
APP_TITLE = 'SmartGrids'
APP_VERSION = '1.3.1'
FILE_TYPE = '.grid'
DEBUG = True
# Default values in pt
UNIT = 'mm' # Supported units: mm, pt, in, px, cm
PAGE_WIDTH = 595.276
PAGE_HEIGHT = 841.89
TOP_MARGIN = 56.693
BOTTOM_MARGIN = 170.079
LEFT_MARGIN = 141.732
RIGHT_MARGIN = 56.693
FONT_SIZE = 9
LEADING = 11.5
CAP_HEIGHT = 1.5
ROWS = 6
LINES_IN_GUTTER = 1
COLUMNS = 5
GUTTER = 28.346
# Font directories
# To include new font into the dropdown list, add the path to the directory to the list
# All paths which don't contain fontfiles or do not exist will be ignored
FONT_DIRECTORIES = [
os.path.join(home_path, 'Library/Application Support/Adobe/CoreSync/plugins/livetype/.r'),
os.path.join(home_path, 'Library/Fonts'),
os.path.join('/Library/Application Support/Adobe/Fonts'),
'/System/Library/Fonts',
os.path.join(home_path, 'Windows\Fonts'),
os.path.join(home_path, 'AppData\Roaming\Adobe\CoreSync\plugins\livetype\r'),
]