mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-18 11:55:46 +08:00
Fix package_data_spec
This commit is contained in:
parent
e989e1d036
commit
338c9341e3
8
setup.py
8
setup.py
@ -35,7 +35,7 @@ jstargets = [
|
||||
os.path.join(main_bundle_dest, "bundle.js"),
|
||||
]
|
||||
|
||||
package_data_spec = {PACKAGE_NAME: ["*"]}
|
||||
package_data_spec = {PACKAGE_NAME: ["*", "templates/*", "static/**"]}
|
||||
|
||||
data_files_spec = [
|
||||
("share/jupyter/labextensions/%s" % labext_name, lab_extension_dest, "**"),
|
||||
@ -81,7 +81,7 @@ setup_args = dict(
|
||||
description="The next gen old-school Notebook UI",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
cmdclass= cmdclass,
|
||||
cmdclass=cmdclass,
|
||||
packages=setuptools.find_packages(),
|
||||
install_requires=[
|
||||
"jupyterlab~=3.0",
|
||||
@ -102,9 +102,7 @@ setup_args = dict(
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Framework :: Jupyter",
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": ["jupyter-classic = jupyterlab_classic.app:main"]
|
||||
},
|
||||
entry_points={"console_scripts": ["jupyter-classic = jupyterlab_classic.app:main"]},
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user