forked from youcefbo/RaJePy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.py
25 lines (21 loc) · 803 Bytes
/
_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
"""
RaJePy configuration file.
Purpose:
- Defines the locations of RaJePy libraries and data files.
- Defines plot dimensions
"""
import os
dcys = {"scripts": os.path.dirname(os.path.realpath(__file__)),
"files": os.sep.join([os.path.dirname(os.path.realpath(__file__)),
"files"]),
"home": os.path.expanduser("~")
}
plots = {"dims": {"column": 3.32153, # inches
"text": 6.97522 # Inches
},
"metadata": {"pdf": {"Author": "Simon Purser",
"Subject": 'https://github.com/SimonP2207/RaJePy'},
"png": {"Author": "Simon Purser",
"Source": 'https://github.com/SimonP2207/RaJePy'}
}
}