Skip to content

Port to JupyterLab 3 #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 11, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Apply review suggestion
  • Loading branch information
fcollonval committed Mar 11, 2021
commit 3bf48238782e173cf0bbe57fa76d6a50a99203d9
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@
HERE = Path(__file__).parent.resolve()

# The name of the project
name = "jupyterlab_snippets"
name = "jupyterlab-snippets"
package = name.replace("-", "_")

lab_path = (HERE / name / "labextension")
lab_path = (HERE / package / "labextension")

# Representative files that should exist after a successful build
jstargets = [
str(lab_path / "package.json"),
]

package_data_spec = {
name: ["*"],
package: ["*"],
}

labext_name = "jupyterlab-snippets"
Expand Down Expand Up @@ -60,7 +61,7 @@
pkg_json = json.loads((HERE / "package.json").read_bytes())

setup_args = dict(
name=name,
name=package,
version=pkg_json["version"],
url=pkg_json["homepage"],
author=pkg_json["author"]["name"],
Expand Down