forked from open-cogsci/OpenSesame
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup_shared.py
69 lines (62 loc) · 1.54 KB
/
setup_shared.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#-*- coding:utf-8 -*-
"""
This file is part of OpenSesame.
OpenSesame is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenSesame is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenSesame. If not, see <http://www.gnu.org/licenses/>.
---
desc:
Contains setup settings that are shared between the various
platform-specific setup scripts.
---
"""
# List of included plug-ins
included_plugins = [
'advanced_delay',
'coroutines',
'fixation_dot',
'form_base',
'form_text_input',
'form_consent',
'form_text_display',
'form_multiple_choice',
'joystick',
'notepad',
'parallel',
'port_reader',
'repeat_cycle',
'reset_feedback',
'srbox',
'text_display',
'text_input',
'touch_response',
'quest_staircase_init',
'quest_staircase_next',
]
# List of included extensions
included_extensions = [
'analytics',
'automatic_backup',
'get_started',
'help',
'plugin_manager',
'quick_switcher',
'toolbar_menu',
'update_checker',
'qprogedit_preferences',
'opensesame_3_notifications',
'example_experiments',
'undo_manager',
'bug_report',
'variable_inspector',
'after_experiment',
'system_information',
'notifications'
]