jupyter-packaging icon indicating copy to clipboard operation
jupyter-packaging copied to clipboard

Tools to help build and install Jupyter Python packages

Results 17 jupyter-packaging issues
Sort by recently updated
recently updated
newest added

I am aware that @blink1073 has been looking into using hatch for building e.g. nbconvert. I've also used it to write my own build plugin, and it's very easy to...

The problem seems to be in `tests/test_datafiles_install.py` which tries to execute a bare `pip install .` A somewhat easy workaround would be to set up a temporary directory and export...

maintenance

As PEP660 has been accepted for editable installation, it will be nice to add it to jupyter-packaging (and to figure out how we could do editable installation for JLab frontend...

enhancement

As we're switching more libraries to use `pre-commit`, it would be handy to have an option install pre-commit on editable installs. This should be a config option like: ``` [tool.jupyter-packaging]...

enhancement

Document how to recursively include data files. Also leaves open a question about how to perform such recursive inclusion of data files dynamically.

The fact that we can't reliably execute `jlpm` during the javascript install steps of eg a pip development install of `jupyterlab` causes some pain currently. It will cause more pain...

Update tests and documentation to use `pyproject.toml` exclusively one support lands in [setuptools](https://github.com/pypa/setuptools/pull/2924).

enhancement

Ideally we shouldn't need a `setup.py` file. - We can use `from importlib_metadata import version; version('')` anywhere where we're using `python setup.py --version`, and we can get the name from...

enhancement

Being able to pass a `package_data_spec` to `create_cmdclass` was quite handy to be able to include package_data as part of the wheel, but it seems to me that it's not...

Sorry a quick question, i like to write code in jupyter notebook, however when coming to package and publish, i often have to manually convert the notebook to python file,...