File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1616HERE = Path (__file__ ).parent .resolve ()
1717
1818# The name of the project
19- name = "jupyterlab_snippets"
19+ name = "jupyterlab-snippets"
20+ package = name .replace ("-" , "_" )
2021
21- lab_path = (HERE / name / "labextension" )
22+ lab_path = (HERE / package / "labextension" )
2223
2324# Representative files that should exist after a successful build
2425jstargets = [
2526 str (lab_path / "package.json" ),
2627]
2728
2829package_data_spec = {
29- name : ["*" ],
30+ package : ["*" ],
3031}
3132
3233labext_name = "jupyterlab-snippets"
6061pkg_json = json .loads ((HERE / "package.json" ).read_bytes ())
6162
6263setup_args = dict (
63- name = name ,
64+ name = package ,
6465 version = pkg_json ["version" ],
6566 url = pkg_json ["homepage" ],
6667 author = pkg_json ["author" ]["name" ],
You can’t perform that action at this time.
0 commit comments