course-setup 3.0.8__tar.gz → 3.0.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {course_setup-3.0.8 → course_setup-3.0.9}/PKG-INFO +1 -1
- {course_setup-3.0.8 → course_setup-3.0.9}/pyproject.toml +1 -1
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/setup_course.py +10 -3
- course_setup-3.0.8/src/setup_course_github/.DS_Store +0 -0
- course_setup-3.0.8/src/setup_course_github/.claude/settings.local.json +0 -7
- {course_setup-3.0.8 → course_setup-3.0.9}/README.md +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/__init__.py +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/archive_course.py +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/config.py +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/generic/.gitignore +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/generic/.ipynb_checkpoints/Course notebook-checkpoint.ipynb +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/generic/Course notebook.ipynb +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/generic/README.md +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/init_config.py +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/retire_course.py +0 -0
- {course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/unretire_course.py +0 -0
|
@@ -83,8 +83,11 @@ def _build_pyproject_toml(
|
|
|
83
83
|
extras: list[str] | None = None,
|
|
84
84
|
) -> str:
|
|
85
85
|
"""Generate a pyproject.toml string for the new course directory."""
|
|
86
|
-
|
|
87
|
-
|
|
86
|
+
deps = (
|
|
87
|
+
["jupyter", "ipyparallel", "gitautopush"]
|
|
88
|
+
if notebook_type == "jupyter"
|
|
89
|
+
else ["marimo", "gitautopush"]
|
|
90
|
+
)
|
|
88
91
|
if extras:
|
|
89
92
|
deps.extend(extras)
|
|
90
93
|
deps_str = "\n".join(f' "{d}",' for d in deps)
|
|
@@ -422,7 +425,11 @@ def main() -> None:
|
|
|
422
425
|
_print_status(f" Directory: {destination}")
|
|
423
426
|
_print_status(f" Notebook type: {notebook_type}")
|
|
424
427
|
_print_status(f" Notebooks: {', '.join(notebook_filenames)}")
|
|
425
|
-
deps =
|
|
428
|
+
deps = (
|
|
429
|
+
["jupyter", "ipyparallel", "gitautopush"]
|
|
430
|
+
if notebook_type == "jupyter"
|
|
431
|
+
else ["marimo", "gitautopush"]
|
|
432
|
+
)
|
|
426
433
|
if extra_packages:
|
|
427
434
|
deps.extend(extra_packages)
|
|
428
435
|
_print_status(f" Dependencies: {', '.join(deps)}")
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{course_setup-3.0.8 → course_setup-3.0.9}/src/setup_course_github/generic/Course notebook.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|