Skip to content

Commit 955abbb

Browse files
committed
Add CONTRIBUTING.md
1 parent a6d7c4a commit 955abbb

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CONTRIBUTING.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Contributing to my-jupyter-shared-drive
2+
3+
## Setting up a development environment
4+
5+
```console
6+
micromamba create -n my-jupyter-shared-drive
7+
micromamba activate my-jupyter-shared-drive
8+
micromamba install pip nodejs
9+
git clone https://github.com/davidbrochart/my-jupyter-shared-drive
10+
cd my jupyter-shared-drive
11+
pip install -e .
12+
pip install jupyterlab
13+
jupyter labextension develop --overwrite .
14+
```

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires = ["hatchling>=1.4.0", "jupyterlab>=4.0.0"]
77

88
[project]
99
name = "my-jupyter-shared-drive"
10-
version = "0.1.0"
10+
version = "0.1.1"
1111
readme = "README.md"
1212
license = { file = "LICENSE" }
1313
requires-python = ">=3.8"
@@ -38,15 +38,15 @@ Documentation = "https://jupyterlab-realtime-collaboration.readthedocs.io/"
3838
Repository = "https://github.com/jupyterlab/jupyter-collaboration"
3939

4040
[tool.hatch.build.targets.sdist]
41-
artifacts = ["my_jupyter_shared_docprovider/labextension"]
41+
artifacts = ["my_jupyter_shared_drive/labextension"]
4242
exclude = ["/.github", "/binder", "node_modules"]
4343

4444
[tool.hatch.build.targets.sdist.force-include]
4545
"packages/my-shared-docprovider" = "packages/my-shared-docprovider"
4646
"packages/my-shared-docprovider-extension" = "packages/my-shared-docprovider-extension"
4747

4848
[tool.hatch.build.targets.wheel.shared-data]
49-
"my_jupyter_shared_docprovider/labextension" = "share/jupyter/labextensions/@jupyter/my-shared-docprovider-extension"
49+
"my_jupyter_shared_drive/labextension" = "share/jupyter/labextensions/@jupyter/my-shared-docprovider-extension"
5050
"install.json" = "share/jupyter/labextensions/@jupyter/my-shared-docprovider-extension/install.json"
5151

5252
[tool.hatch.build.hooks.jupyter-builder]

0 commit comments

Comments
 (0)