Skip to content

Commit 977caab

Browse files
committed
addressed review comments
1 parent ae603fd commit 977caab

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

MANIFEST.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ include README.md
33

44
include setupbase.py
55

6-
include jupyterlab_git/labextension/*.tgz
7-
86
# Patterns to exclude from any directory
97
global-exclude *~
108
global-exclude *.pyc

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"scripts": {
1515
"build": "jlpm install && tsc",
1616
"build:labextension": "jlpm build && jlpm clean:labextension && mkdirp jupyterlab_git/labextension && cd jupyterlab_git/labextension && npm pack ../..",
17-
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
18-
"clean:more": "jlpm clean && rimraf build && rimraf dist",
17+
"clean": "rimraf lib tsconfig.tsbuildinfo",
18+
"clean:more": "jlpm clean && rimraf build dist MANIFEST",
1919
"clean:labextension": "rimraf jupyterlab_git/labextension",
2020
"clean:slate": "jlpm clean:more && jlpm clean:labextension && rimraf node_modules",
2121
"watch": "tsc -w",

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
"""
2-
Setup Module to setup Python Handlers (Git Handlers) for the Git Plugin.
1+
"""Setup Module to setup Python serverextension for the jupyterlab git
2+
extension. For non-dev installs, will also automatically
3+
build (if package.json is present) and install (if the labextension exists,
4+
eg the build succeeded) the corresponding labextension.
35
"""
46
from pathlib import Path
57
from subprocess import CalledProcessError

0 commit comments

Comments
 (0)