-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconst.py
17 lines (14 loc) · 893 Bytes
/
const.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Constants that define absolute filenames of project files.
import os
homeDir = os.path.expanduser("~")
scriptsDir = os.path.dirname(__file__)
USERS_RC_FILENAME = os.path.join(homeDir, '.standardrc')
AL_FILENAME = os.path.join(scriptsDir, '../standard_functions')
PROJECTS_RC_FILENAME = os.path.join(scriptsDir, '../standard_rc')
RC_OPTIONS_COMMENT = os.path.join(scriptsDir, 'resources/rc-options-comment')
PROJECTS_RC_HEADER = os.path.join(scriptsDir, 'resources/projects-rc-header')
USERS_RC_HEADER = os.path.join(scriptsDir, 'resources/users-rc-header')
LIST_OF_IMPORTANT_FUNCTIONS = os.path.join(scriptsDir, '../doc/interesting-functions')
VERY_INTERESTING_FUNCTIONS_FILENAME = os.path.join(scriptsDir, '../doc/very-interesting-functions')
ALIASES_HEADER = os.path.join(scriptsDir, 'resources/aliases-header')
README_FILENAME = os.path.join(scriptsDir, '../README.md')