-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 918 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tool.poetry]
name = "poetry-jupyter-plugin"
version = "0.1.4"
description = "Poetry plugin to manage Jupyter kernels"
authors = ["Patrick Kage <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pkage/poetry-jupyter-plugin"
repository = "https://github.com/pkage/poetry-jupyter-plugin"
packages = [{include = "poetry_jupyter_plugin"}]
keywords = ["poetry", "poetry-plugin", "plugin", "jupyter", "jupyter-kernel"]
classifiers = [
"Framework :: Jupyter",
"Topic :: Software Development",
"Topic :: Utilities",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = "^3.10"
poetry = "^1.3.2"
jupyter-client = "^7.4.8"
asset = "^0.6.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."poetry.application.plugin"]
jupyter-command = "poetry_jupyter_plugin.plugin:JupyterKernelPlugin"