Update to jupyter-packaging 0.10 (#179)
* Update to jupyter-packaging 0.10 * Update to jupyter-packaging 0.10 on CI * Update pyproject metadata * Update target * Update targets * Update build command * Update MANIFEST.in * Fix build backend * Add build:prod command to packages * Update RELEASE.md * Enable server extension in dev mode * Enable for the notebook server * Fix typo * Add jupyter labextension develop . to the Binder * Update dev instructionspull/6294/head
parent
b2ca240c63
commit
96671df358
@ -1,3 +1,17 @@
|
||||
[build-system]
|
||||
requires = ["jupyter_packaging~=0.7.9", "jupyterlab>=3.1.0rc1,==3.*", "setuptools>=40.8.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
requires = ["jupyter_packaging~=0.10", "jupyterlab>=3.1.0rc1,==3.1.*"]
|
||||
build-backend = "jupyter_packaging.build_api"
|
||||
|
||||
[license]
|
||||
file="LICENSE"
|
||||
|
||||
[tool.jupyter-packaging.options]
|
||||
skip-if-exists = ["retrolab/labextension/static/style.js", "retrolab/static/bundle.js"]
|
||||
ensured-targets = ["retrolab/labextension/static/style.js", "retrolab/static/bundle.js"]
|
||||
|
||||
[tool.jupyter-packaging.builder]
|
||||
factory = "jupyter_packaging.npm_builder"
|
||||
|
||||
[tool.jupyter-packaging.build-args]
|
||||
build_cmd = "build:prod"
|
||||
npm = ["jlpm"]
|
||||
|
||||
@ -0,0 +1,39 @@
|
||||
[metadata]
|
||||
name = retrolab
|
||||
version = attr: retrolab._version.__version__
|
||||
description = JupyterLab Distribution with a retro look and feel
|
||||
long_description = file: README.md
|
||||
long_description_content_type = text/markdown
|
||||
license_file = LICENSE
|
||||
author = Jupyter Development Team
|
||||
author_email = jupyter@googlegroups.com
|
||||
url = https://github.com/jupyterlab/retrolab
|
||||
platforms = Linux, Mac OS X, Windows
|
||||
keywords = Jupyter, JupyterLab, Notebook
|
||||
classifiers =
|
||||
Intended Audience :: Developers
|
||||
Intended Audience :: System Administrators
|
||||
Intended Audience :: Science/Research
|
||||
License :: OSI Approved :: BSD License
|
||||
Programming Language :: Python
|
||||
Programming Language :: Python :: 3.6
|
||||
Programming Language :: Python :: 3.7
|
||||
Programming Language :: Python :: 3.8
|
||||
Programming Language :: Python :: 3.9
|
||||
Framework :: Jupyter
|
||||
|
||||
[options]
|
||||
zip_safe = False
|
||||
include_package_data = True
|
||||
packages = find:
|
||||
python_requires = >=3.6
|
||||
install_requires =
|
||||
jupyterlab>=3.1.0rc1,<4
|
||||
jupyterlab_server~=2.3
|
||||
jupyter_server~=1.4
|
||||
nbclassic~=0.2
|
||||
tornado>=6.1.0
|
||||
|
||||
[options.entry_points]
|
||||
console_scripts =
|
||||
jupyter-retro = retrolab.app:main
|
||||
Loading…
Reference in new issue