Name | jupyterlab-logtalk-codemirror-extension JSON |
Version |
1.1.0
JSON |
| download |
home_page | None |
Summary | A JupyterLab extension for Logtalk syntax highlighting. |
upload_time | 2025-07-30 20:32:41 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | BSD 3-Clause License
Copyright (c) 2025, Paulo Moura
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
keywords |
codemirror
jupyter
jupyterlab
jupyterlab-extension
logtalk
syntax-highlighting
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# JupyterLab Logtalk CodeMirror Extension
A JupyterLab 4.x extension providing a Logtalk CodeMirror mode for syntax highlighting plus launcher and command palette entries for creating new Logtalk files.
See also the [Jupyter kernel for Logtalk](https://github.com/LogtalkDotOrg/logtalk-jupyter-kernel).
🙏 Sponsored by [Permion](https://permion.ai/) and [GitHub Sponsors](https://github.com/sponsors/pmoura).
## Requirements
- JupyterLab >= 4.0.0
## Install
The extension is provided as a Python package on the Python Package Index and can be installed with `pip`:
python3 -m pip install --upgrade jupyterlab-logtalk-codemirror-extension
## Uninstall
python3 -m pip uninstall jupyterlab-logtalk-codemirror-extension
## Contributing
### Development install
After cloning the repository, install the extension in development mode:
cd jupyterlab-logtalk-codemirror-extension
python3 -m pip install -e .
jupyter labextension develop . --overwrite
You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
jlpm watch
jupyter lab
The `jlpm` command is JupyterLab's pinned version of [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use `yarn` or `npm` in lieu of `jlpm` below.
With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).
By default, the `jlpm build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:
jupyter lab build --minimize=False
### Development uninstall
python3 -m pip uninstall jupyterlab_logtalk_codemirror_extension
In development mode, you will also need to remove the symlink created by `jupyter labextension develop`
command. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`
folder is located. Then you can remove the symlink named `jupyterlab_logtalk_codemirror_extension` within that folder.
### Publishing
Make sure that both the `package.json` and `pyproject.toml` file report the same version. In the `twine` command below, replace `VERSION` with the actual version number (e.g., `1.0.0`).
python3 -m build .
twine upload jupyterlab_logtalk_codemirror_extension-VERSION.tar.gz and jupyterlab_logtalk_codemirror_extension-VERSION-py3-none-any.whl
The second command above requires you to be logged in to the PyPI registry. For the Conda registry, an automatic build and pull request is triggered when a new version is published on PyPI.
Raw data
{
"_id": null,
"home_page": null,
"name": "jupyterlab-logtalk-codemirror-extension",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Paulo Moura <pmoura@logtalk.org>",
"keywords": "codemirror, jupyter, jupyterlab, jupyterlab-extension, logtalk, syntax-highlighting",
"author": null,
"author_email": "Paulo Moura <pmoura@logtalk.org>",
"download_url": "https://files.pythonhosted.org/packages/a2/2c/07d80fc57015e5c331e48097383cd77e4f4e11e2a20c67cbef113019090a/jupyterlab_logtalk_codemirror_extension-1.1.0.tar.gz",
"platform": null,
"description": "# JupyterLab Logtalk CodeMirror Extension\n\nA JupyterLab 4.x extension providing a Logtalk CodeMirror mode for syntax highlighting plus launcher and command palette entries for creating new Logtalk files.\n\nSee also the [Jupyter kernel for Logtalk](https://github.com/LogtalkDotOrg/logtalk-jupyter-kernel).\n\n\ud83d\ude4f Sponsored by [Permion](https://permion.ai/) and [GitHub Sponsors](https://github.com/sponsors/pmoura).\n\n## Requirements\n\n- JupyterLab >= 4.0.0\n\n## Install\n\nThe extension is provided as a Python package on the Python Package Index and can be installed with `pip`:\n\n\tpython3 -m pip install --upgrade jupyterlab-logtalk-codemirror-extension\n\n## Uninstall\n\n\tpython3 -m pip uninstall jupyterlab-logtalk-codemirror-extension\n\n## Contributing\n\n### Development install\n\nAfter cloning the repository, install the extension in development mode:\n\n\tcd jupyterlab-logtalk-codemirror-extension\n\tpython3 -m pip install -e .\n\tjupyter labextension develop . --overwrite\n\nYou can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.\n\n\tjlpm watch\n\tjupyter lab\n\nThe `jlpm` command is JupyterLab's pinned version of [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use `yarn` or `npm` in lieu of `jlpm` below.\n\nWith the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).\n\nBy default, the `jlpm build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:\n\n\tjupyter lab build --minimize=False\n\n### Development uninstall\n\n\tpython3 -m pip uninstall jupyterlab_logtalk_codemirror_extension\n\nIn development mode, you will also need to remove the symlink created by `jupyter labextension develop`\ncommand. To find its location, you can run `jupyter labextension list` to figure out where the `labextensions`\nfolder is located. Then you can remove the symlink named `jupyterlab_logtalk_codemirror_extension` within that folder.\n\n### Publishing\n\nMake sure that both the `package.json` and `pyproject.toml` file report the same version. In the `twine` command below, replace `VERSION` with the actual version number (e.g., `1.0.0`).\n\n\tpython3 -m build .\n\ttwine upload jupyterlab_logtalk_codemirror_extension-VERSION.tar.gz and jupyterlab_logtalk_codemirror_extension-VERSION-py3-none-any.whl\n\nThe second command above requires you to be logged in to the PyPI registry. For the Conda registry, an automatic build and pull request is triggered when a new version is published on PyPI.\n",
"bugtrack_url": null,
"license": "BSD 3-Clause License\n \n Copyright (c) 2025, Paulo Moura\n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n \n 1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n \n 2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n \n 3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
"summary": "A JupyterLab extension for Logtalk syntax highlighting.",
"version": "1.1.0",
"project_urls": {
"Bug Tracker": "https://github.com/LogtalkDotOrg/jupyterlab-logtalk-codemirror-extension/issues",
"Homepage": "https://github.com/LogtalkDotOrg/jupyterlab-logtalk-codemirror-extension",
"Repository": "https://github.com/LogtalkDotOrg/jupyterlab-logtalk-codemirror-extension.git"
},
"split_keywords": [
"codemirror",
" jupyter",
" jupyterlab",
" jupyterlab-extension",
" logtalk",
" syntax-highlighting"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "315161611f8fad4730fee9085b5b5cdd147201a2eeee1f27197bdf0b6d2ce7fd",
"md5": "a60257d5399ad6c7f6cd681989799ae2",
"sha256": "38b8be6d21eb0705c4dfab5027417ed32137f283c7da85ceefd41687a7392604"
},
"downloads": -1,
"filename": "jupyterlab_logtalk_codemirror_extension-1.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a60257d5399ad6c7f6cd681989799ae2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 82767,
"upload_time": "2025-07-30T20:32:39",
"upload_time_iso_8601": "2025-07-30T20:32:39.956937Z",
"url": "https://files.pythonhosted.org/packages/31/51/61611f8fad4730fee9085b5b5cdd147201a2eeee1f27197bdf0b6d2ce7fd/jupyterlab_logtalk_codemirror_extension-1.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a22c07d80fc57015e5c331e48097383cd77e4f4e11e2a20c67cbef113019090a",
"md5": "6ce617320becd69db54f584e7064cf11",
"sha256": "86e4fa675c7b8d7ee7b1ba9ed999e0cdb912fd112e28dbd7d8de4ae35c3b7635"
},
"downloads": -1,
"filename": "jupyterlab_logtalk_codemirror_extension-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "6ce617320becd69db54f584e7064cf11",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 213446,
"upload_time": "2025-07-30T20:32:41",
"upload_time_iso_8601": "2025-07-30T20:32:41.169654Z",
"url": "https://files.pythonhosted.org/packages/a2/2c/07d80fc57015e5c331e48097383cd77e4f4e11e2a20c67cbef113019090a/jupyterlab_logtalk_codemirror_extension-1.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-30 20:32:41",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "LogtalkDotOrg",
"github_project": "jupyterlab-logtalk-codemirror-extension",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "jupyterlab-logtalk-codemirror-extension"
}