-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbgrader_config.py
715 lines (535 loc) · 29.4 KB
/
nbgrader_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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
c = get_config()
###############################################################################
# Begin additions by nbgrader quickstart
###############################################################################
# You only need this if you are running nbgrader on a shared
# server set up.
c.Exchange.course_id = "courset_demo_1"
# Update this list with other assignments you want
c.CourseDirectory.db_assignments = [dict(name="ps1")]
# Change the students in this list with that actual students in
# your course
c.CourseDirectory.db_students = [
dict(id="bitdiddle", first_name="Ben", last_name="Bitdiddle"),
dict(id="hacker", first_name="Alyssa", last_name="Hacker"),
dict(id="reasoner", first_name="Louis", last_name="Reasoner")
]
c.IncludeHeaderFooter.header = "source/header.ipynb"
###############################################################################
# End additions by nbgrader quickstart
###############################################################################
# Configuration file for nbgrader.
#------------------------------------------------------------------------------
# Configurable configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# LoggingConfigurable configuration
#------------------------------------------------------------------------------
# A parent class for Configurables that log.
#
# Subclasses have a log trait, and the default behavior is to get the logger
# from the currently running Application.
#------------------------------------------------------------------------------
# SingletonConfigurable configuration
#------------------------------------------------------------------------------
# A configurable that only allows one instance.
#
# This class is for classes that should only have one instance of itself or
# *any* subclass. To create and retrieve such a class use the
# :meth:`SingletonConfigurable.instance` method.
#------------------------------------------------------------------------------
# Application configuration
#------------------------------------------------------------------------------
# This is an application.
# The date format used by logging formatters for %(asctime)s
# c.Application.log_datefmt = '%Y-%m-%d %H:%M:%S'
# The Logging format template
# c.Application.log_format = '[%(name)s]%(highlevel)s %(message)s'
# Set the log level by value or name.
# c.Application.log_level = 30
#------------------------------------------------------------------------------
# JupyterApp configuration
#------------------------------------------------------------------------------
# Base class for Jupyter applications
# Answer yes to any prompts.
# c.JupyterApp.answer_yes = False
# Full path of a config file.
# c.JupyterApp.config_file = u''
# Specify a config file to load.
# c.JupyterApp.config_file_name = u''
# Generate default config file.
# c.JupyterApp.generate_config = False
#------------------------------------------------------------------------------
# NbGrader configuration
#------------------------------------------------------------------------------
# A base class for all the nbgrader apps.
# Name of the logfile to log to.
# c.NbGrader.logfile = '.nbgrader.log'
#------------------------------------------------------------------------------
# NbGraderApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# CourseDirectory configuration
#------------------------------------------------------------------------------
# The assignment name. This MUST be specified, either by setting the config
# option, passing an argument on the command line, or using the --assignment
# option on the command line.
# c.CourseDirectory.assignment_id = ''
# The name of the directory that contains assignment submissions after they have
# been autograded. This corresponds to the `nbgrader_step` variable in the
# `directory_structure` config option.
# c.CourseDirectory.autograded_directory = 'autograded'
# A list of assignments that will be created in the database. Each item in the
# list should be a dictionary with the following keys:
#
# - name
# - duedate (optional)
#
# The values will be stored in the database. Please see the API documentation on
# the `Assignment` database model for details on these fields.
# c.CourseDirectory.db_assignments = []
# A list of student that will be created in the database. Each item in the list
# should be a dictionary with the following keys:
#
# - id
# - first_name (optional)
# - last_name (optional)
# - email (optional)
#
# The values will be stored in the database. Please see the API documentation on
# the `Student` database model for details on these fields.
# c.CourseDirectory.db_students = []
# URL to the database. Defaults to sqlite:///<root>/gradebook.db, where <root>
# is another configurable variable.
# c.CourseDirectory.db_url = ''
# Format string for the directory structure that nbgrader works over during the
# grading process. This MUST contain named keys for 'nbgrader_step',
# 'student_id', and 'assignment_id'. It SHOULD NOT contain a key for
# 'notebook_id', as this will be automatically joined with the rest of the path.
# c.CourseDirectory.directory_structure = '{nbgrader_step}/{student_id}/{assignment_id}'
# The name of the directory that contains assignment feedback after grading has
# been completed. This corresponds to the `nbgrader_step` variable in the
# `directory_structure` config option.
# c.CourseDirectory.feedback_directory = 'feedback'
# List of file names or file globs to be ignored when copying directories.
# c.CourseDirectory.ignore = ['.ipynb_checkpoints', '*.pyc', '__pycache__']
# File glob to match notebook names, excluding the '.ipynb' extension. This can
# be changed to filter by notebook.
# c.CourseDirectory.notebook_id = '*'
# The name of the directory that contains the version of the assignment that
# will be released to students. This corresponds to the `nbgrader_step` variable
# in the `directory_structure` config option.
# c.CourseDirectory.release_directory = 'release'
# The root directory for the course files (that includes the `source`,
# `release`, `submitted`, `autograded`, etc. directories). Defaults to the
# current working directory.
# c.CourseDirectory.root = ''
# The name of the directory that contains the master/instructor version of
# assignments. This corresponds to the `nbgrader_step` variable in the
# `directory_structure` config option.
# c.CourseDirectory.source_directory = 'source'
# File glob to match student IDs. This can be changed to filter by student.
# Note: this is always changed to '.' when running `nbgrader assign`, as the
# assign step doesn't have any student ID associated with it.
#
# If the ID is purely numeric and you are passing it as a flag on the command
# line, you will need to escape the quotes in order to have it detected as a
# string, for example `--student=""12345""`. See:
#
# https://github.com/jupyter/nbgrader/issues/743
#
# for more details.
# c.CourseDirectory.student_id = '*'
# The name of the directory that contains assignments that have been submitted
# by students for grading. This corresponds to the `nbgrader_step` variable in
# the `directory_structure` config option.
# c.CourseDirectory.submitted_directory = 'submitted'
#------------------------------------------------------------------------------
# QuickStartApp configuration
#------------------------------------------------------------------------------
# Whether to overwrite existing files
# c.QuickStartApp.force = False
#------------------------------------------------------------------------------
# DbApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# UpdateApp configuration
#------------------------------------------------------------------------------
# whether to validate metadata after updating it
# c.UpdateApp.validate = True
#------------------------------------------------------------------------------
# ExportApp configuration
#------------------------------------------------------------------------------
# The plugin class for exporting the grades.
# c.ExportApp.plugin_class = 'nbgrader.plugins.export.CsvExportPlugin'
#------------------------------------------------------------------------------
# FormgradeApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# ValidateApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# FeedbackApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# ExtensionApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# ListApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# ZipCollectApp configuration
#------------------------------------------------------------------------------
# The name of the directory that contains assignment submission files and/or
# archives (zip) files manually downloaded from a LMS. This corresponds to the
# `collect_step` variable in the `collect_structure` config option.
# c.ZipCollectApp.archive_directory = 'archive'
# Format string for the directory structure that nbgrader works over during the
# zip collect process. This MUST contain named keys for 'downloaded',
# 'assignment_id', and 'collect_step'.
# c.ZipCollectApp.collect_directory_structure = '{downloaded}/{assignment_id}/{collect_step}'
# The plugin class for processing the submitted file names after they have been
# extracted into the `extracted_directory`.
# c.ZipCollectApp.collector_plugin = 'nbgrader.plugins.zipcollect.FileNameCollectorPlugin'
# The main directory that corresponds to the `downloaded` variable in the
# `collect_structure` config option.
# c.ZipCollectApp.downloaded_directory = 'downloaded'
# The name of the directory that contains assignment submission files extracted
# or copied from the `archive_directory`. This corresponds to the `collect_step`
# variable in the `collect_structure` config option.
# c.ZipCollectApp.extracted_directory = 'extracted'
# The plugin class for extracting the archive files in the `archive_directory`.
# c.ZipCollectApp.extractor_plugin = 'nbgrader.plugins.zipcollect.ExtractorPlugin'
# Force overwrite of existing files.
# c.ZipCollectApp.force = False
# Skip submitted notebooks with invalid names.
# c.ZipCollectApp.strict = False
#------------------------------------------------------------------------------
# SubmitApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# AutogradeApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# CollectApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# FetchApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# ReleaseApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# AssignApp configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# BasePlugin configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# ExportPlugin configuration
#------------------------------------------------------------------------------
# Base class for export plugins.
# destination to export to
# c.ExportPlugin.to = ''
#------------------------------------------------------------------------------
# CsvExportPlugin configuration
#------------------------------------------------------------------------------
# CSV exporter plugin.
#------------------------------------------------------------------------------
# ExtractorPlugin configuration
#------------------------------------------------------------------------------
# Submission archive files extractor plugin for the
# :class:`~nbgrader.apps.zipcollectapp.ZipCollectApp`. Extractor plugin
# subclasses MUST inherit from this class.
# Force overwrite of existing files.
# c.ExtractorPlugin.force = False
# List of valid archive (zip) filename extensions to extract. Any archive (zip)
# files with an extension not in this list are copied to the
# `extracted_directory`.
# c.ExtractorPlugin.zip_ext = ['.zip', '.gz']
#------------------------------------------------------------------------------
# FileNameCollectorPlugin configuration
#------------------------------------------------------------------------------
# Submission filename collector plugin for the
# :class:`~nbgrader.apps.zipcollectapp.ZipCollectApp`. Collect plugin subclasses
# MUST inherit from this class.
# This regular expression is applied to each submission filename and MUST be
# supplied by the instructor. This regular expression MUST provide the
# `(?P<student_id>...)` and `(?P<file_id>...)` named group expressions.
# Optionally this regular expression can also provide the `(?P<first_name>...)`,
# `(?P<last_name>...)`, `(?P<email>...)`, and `(?P<timestamp>...)` named group
# expressions. For example if the filename is:
#
# `ps1_bitdiddle_attempt_2016-01-30-15-00-00_problem1.ipynb`
#
# then this `named_regexp` could be:
#
# ".*_(?P<student_id>\w+)_attempt_(?P<timestamp>[0-9\-]+)_(?P<file_id>\w+)"
#
# For named group regular expression examples see
# https://docs.python.org/howto/regex.html
# c.FileNameCollectorPlugin.named_regexp = ''
# List of valid submission filename extensions to collect. Any submitted file
# with an extension not in this list is skipped.
# c.FileNameCollectorPlugin.valid_ext = ['.ipynb']
#------------------------------------------------------------------------------
# LateSubmissionPlugin configuration
#------------------------------------------------------------------------------
# Predefined methods for assigning penalties for late submission
# The method for assigning late submission penalties:
# 'none': do nothing (no penalty assigned)
# 'zero': assign an overall score of zero (penalty = score)
# c.LateSubmissionPlugin.penalty_method = 'none'
#------------------------------------------------------------------------------
# NbConvertBase configuration
#------------------------------------------------------------------------------
# Global configurable class for shared config
#
# Useful for display data priority that might be used by many transformers
# DEPRECATED default highlight language, please use language_info metadata
# instead
# c.NbConvertBase.default_language = 'ipython'
# An ordered list of preferred output type, the first encountered will usually
# be used when converting discarding the others.
# c.NbConvertBase.display_data_priority = ['text/html', 'application/pdf', 'text/latex', 'image/svg+xml', 'image/png', 'image/jpeg', 'text/markdown', 'text/plain']
#------------------------------------------------------------------------------
# Preprocessor configuration
#------------------------------------------------------------------------------
# A configurable preprocessor
#
# Inherit from this class if you wish to have configurability for your
# preprocessor.
#
# Any configurable traitlets this class exposed will be configurable in profiles
# using c.SubClassName.attribute = value
#
# you can overwrite :meth:`preprocess_cell` to apply a transformation
# independently on each cell or :meth:`preprocess` if you prefer your own logic.
# See corresponding docstring for informations.
#
# Disabled by default and can be enabled via the config by
# 'c.YourPreprocessorName.enabled = True'
#
# c.Preprocessor.enabled = False
#------------------------------------------------------------------------------
# NbGraderPreprocessor configuration
#------------------------------------------------------------------------------
# Whether to use this preprocessor when running nbgrader
# c.NbGraderPreprocessor.enabled = True
#------------------------------------------------------------------------------
# AssignLatePenalties configuration
#------------------------------------------------------------------------------
# Preprocessor for assigning penalties for late submissions to the database
# The plugin class for assigning the late penalty for each notebook.
# c.AssignLatePenalties.plugin_class = 'nbgrader.plugins.latesubmission.LateSubmissionPlugin'
#------------------------------------------------------------------------------
# IncludeHeaderFooter configuration
#------------------------------------------------------------------------------
# A preprocessor for adding header and/or footer cells to a notebook.
# Path to footer notebook, relative to the root of the course directory
# c.IncludeHeaderFooter.footer = ''
# Path to header notebook, relative to the root of the course directory
# c.IncludeHeaderFooter.header = ''
#------------------------------------------------------------------------------
# LockCells configuration
#------------------------------------------------------------------------------
# A preprocessor for making cells undeletable.
# Whether all assignment cells are locked (non-deletable and non-editable)
# c.LockCells.lock_all_cells = False
# Whether grade cells are locked (non-deletable)
# c.LockCells.lock_grade_cells = True
# Whether readonly cells are locked (non-deletable and non-editable)
# c.LockCells.lock_readonly_cells = True
# Whether solution cells are locked (non-deletable and non-editable)
# c.LockCells.lock_solution_cells = True
#------------------------------------------------------------------------------
# ClearSolutions configuration
#------------------------------------------------------------------------------
# The delimiter marking the beginning of a solution
# c.ClearSolutions.begin_solution_delimeter = 'BEGIN SOLUTION'
# The code snippet that will replace code solutions
# c.ClearSolutions.code_stub = {'python': '# YOUR CODE HERE\nraise NotImplementedError()'}
# The delimiter marking the end of a solution
# c.ClearSolutions.end_solution_delimeter = 'END SOLUTION'
# Whether or not to complain if cells containing solutions regions are not
# marked as solution cells. WARNING: this will potentially cause things to break
# if you are using the full nbgrader pipeline. ONLY disable this option if you
# are only ever planning to use nbgrader assign.
# c.ClearSolutions.enforce_metadata = True
# The text snippet that will replace written solutions
# c.ClearSolutions.text_stub = 'YOUR ANSWER HERE'
#------------------------------------------------------------------------------
# SaveAutoGrades configuration
#------------------------------------------------------------------------------
# Preprocessor for saving out the autograder grades into a database
#------------------------------------------------------------------------------
# ComputeChecksums configuration
#------------------------------------------------------------------------------
# A preprocessor to compute checksums of grade cells.
#------------------------------------------------------------------------------
# SaveCells configuration
#------------------------------------------------------------------------------
# A preprocessor to save information about grade and solution cells.
#------------------------------------------------------------------------------
# OverwriteCells configuration
#------------------------------------------------------------------------------
# A preprocessor to overwrite information about grade and solution cells.
#------------------------------------------------------------------------------
# CheckCellMetadata configuration
#------------------------------------------------------------------------------
# A preprocessor for checking that grade ids are unique.
#------------------------------------------------------------------------------
# ExecutePreprocessor configuration
#------------------------------------------------------------------------------
# Executes all the cells in a notebook
# If `False` (default), when a cell raises an error the execution is stoppped
# and a `CellExecutionError` is raised. If `True`, execution errors are ignored
# and the execution is continued until the end of the notebook. Output from
# exceptions is included in the cell output in both cases.
# c.ExecutePreprocessor.allow_errors = False
# If execution of a cell times out, interrupt the kernel and continue executing
# other cells rather than throwing an error and stopping.
# c.ExecutePreprocessor.interrupt_on_timeout = False
# Name of kernel to use to execute the cells. If not set, use the kernel_spec
# embedded in the notebook.
# c.ExecutePreprocessor.kernel_name = ''
# If `False` (default), then the kernel will continue waiting for iopub messages
# until it receives a kernel idle message, or until a timeout occurs, at which
# point the currently executing cell will be skipped. If `True`, then an error
# will be raised after the first timeout. This option generally does not need to
# be used, but may be useful in contexts where there is the possibility of
# executing notebooks with memory-consuming infinite loops.
# c.ExecutePreprocessor.raise_on_iopub_timeout = False
# The time to wait (in seconds) for output from executions. If a cell execution
# takes longer, an exception (TimeoutError on python 3+, RuntimeError on python
# 2) is raised.
#
# `None` or `-1` will disable the timeout.
# c.ExecutePreprocessor.timeout = 30
#------------------------------------------------------------------------------
# Execute configuration
#------------------------------------------------------------------------------
# The number of times to try re-executing the notebook before throwing an error.
# Generally, this shouldn't need to be set, but might be useful for CI
# environments when tests are flaky.
# c.Execute.execute_retries = 0
# A list of extra arguments to pass to the kernel. For python kernels, this
# defaults to ``--HistoryManager.hist_file=:memory:``. For other kernels this is
# just an empty list.
# c.Execute.extra_arguments = []
#------------------------------------------------------------------------------
# GetGrades configuration
#------------------------------------------------------------------------------
# Preprocessor for saving grades from the database to the notebook
#
# c.GetGrades.display_data_priority = ['text/html', 'application/pdf', 'text/latex', 'image/svg+xml', 'image/png', 'image/jpeg', 'text/plain']
#------------------------------------------------------------------------------
# ClearOutputPreprocessor configuration
#------------------------------------------------------------------------------
# Removes the output from all code cells in a notebook.
#------------------------------------------------------------------------------
# ClearOutput configuration
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# LimitOutput configuration
#------------------------------------------------------------------------------
# Preprocessor for limiting cell output
# maximum number of lines of output (-1 means no limit)
# c.LimitOutput.max_lines = 1000
# maximum number of traceback lines (-1 means no limit)
# c.LimitOutput.max_traceback = 100
#------------------------------------------------------------------------------
# DeduplicateIds configuration
#------------------------------------------------------------------------------
# A preprocessor to overwrite information about grade and solution cells.
#------------------------------------------------------------------------------
# ClearHiddenTests configuration
#------------------------------------------------------------------------------
# The delimiter marking the beginning of hidden tests cases
# c.ClearHiddenTests.begin_test_delimeter = 'BEGIN HIDDEN TESTS'
# The delimiter marking the end of hidden tests cases
# c.ClearHiddenTests.end_test_delimeter = 'END HIDDEN TESTS'
# Whether or not to complain if cells containing hidden test regions are not
# marked as grade cells. WARNING: this will potentially cause things to break if
# you are using the full nbgrader pipeline. ONLY disable this option if you are
# only ever planning to use nbgrader assign.
# c.ClearHiddenTests.enforce_metadata = True
#------------------------------------------------------------------------------
# OverwriteKernelspec configuration
#------------------------------------------------------------------------------
# A preprocessor for checking the notebook kernelspec metadata.
#------------------------------------------------------------------------------
# Exchange configuration
#------------------------------------------------------------------------------
# Local cache directory for nbgrader submit and nbgrader list. Defaults to
# $JUPYTER_DATA_DIR/nbgrader_cache
# c.Exchange.cache = ''
# A key that is unique per instructor and course. This MUST be specified, either
# by setting the config option, or using the --course option on the command
# line.
# c.Exchange.course_id = ''
# Whether the path for fetching/submitting assignments should be prefixed with
# the course name. If this is `False`, then the path will be something like
# `./ps1`. If this is `True`, then the path will be something like
# `./course123/ps1`.
# c.Exchange.path_includes_course = False
# The nbgrader exchange directory writable to everyone. MUST be preexisting.
# c.Exchange.root = '/srv/nbgrader/exchange'
# Format string for timestamps
# c.Exchange.timestamp_format = '%Y-%m-%d %H:%M:%S.%f %Z'
# Timezone for recording timestamps
# c.Exchange.timezone = 'UTC'
#------------------------------------------------------------------------------
# ExchangeCollect configuration
#------------------------------------------------------------------------------
# Update existing submissions with ones that have newer timestamps.
# c.ExchangeCollect.update = False
#------------------------------------------------------------------------------
# ExchangeFetch configuration
#------------------------------------------------------------------------------
# Whether to replace missing files on fetch
# c.ExchangeFetch.replace_missing_files = False
#------------------------------------------------------------------------------
# ExchangeList configuration
#------------------------------------------------------------------------------
# List assignments in submission cache.
# c.ExchangeList.cached = False
# List inbound files rather than outbound.
# c.ExchangeList.inbound = False
# Remove, rather than list files.
# c.ExchangeList.remove = False
#------------------------------------------------------------------------------
# ExchangeRelease configuration
#------------------------------------------------------------------------------
# Force overwrite existing files in the exchange.
# c.ExchangeRelease.force = False
#------------------------------------------------------------------------------
# ExchangeSubmit configuration
#------------------------------------------------------------------------------
# Whether or not to submit the assignment if there are missing notebooks from
# the released assignment notebooks.
# c.ExchangeSubmit.strict = False
#------------------------------------------------------------------------------
# BaseConverter configuration
#------------------------------------------------------------------------------
# Whether to overwrite existing assignments/submissions
# c.BaseConverter.force = False
# Permissions to set on files output by nbgrader. The default is generally read-
# only (444), with the exception of nbgrader assign and nbgrader feedback, in
# which case the user also has write permission.
# c.BaseConverter.permissions = 0
#------------------------------------------------------------------------------
# Assign configuration
#------------------------------------------------------------------------------
# Whether to create the assignment at runtime if it does not already exist.
# c.Assign.create_assignment = False
# Do not save information about the assignment into the database.
# c.Assign.no_database = False
#------------------------------------------------------------------------------
# Autograde configuration
#------------------------------------------------------------------------------
# Whether to create the student at runtime if it does not already exist.
# c.Autograde.create_student = False
#------------------------------------------------------------------------------
# Feedback configuration
#------------------------------------------------------------------------------