Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,14 @@ docker pull ghcr.io/mcanouil/quarto-codespaces:latest

## Initialisation Script

The initialisation script [init.sh](init.sh) is used to set up the R, Python, and Julia environments.
The initialisation script [init-env.sh](init-env.sh) is used to set up the R, Python, and Julia environments.
It supports initialising all environments or specific ones based on the provided options.

### Usage

```sh
./init.sh [--what/-w all|r|python|julia] [--force/-f] [--help/-h]
chmod +x ./init-env.sh # make script executable
./init-env.sh [--what/-w all|r|python|julia] [--force/-f] [--help/-h]
```

### Script Details
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
name = "quarto-codespaces"
version = "0.1.1"
requires-python = ">=3.13"
dependencies = [
"jupyter>=1.1.1",
"papermill>=2.6.0",
]