-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (49 loc) · 1.55 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "nbpipe"
version = "0.1.6"
description = "Run sequences of Jupyter notebooks as a workflow from the command line or the JupyterLab sidebar"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Nawaz Gafar" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"ipykernel>=6.0",
"jupyter-client>=8.0",
"jupyter-server>=2.0",
"nbformat>=5.1",
"pyyaml>=6.0",
]
[project.entry-points."jupyter_server.extension.config"]
nbpipe = "nbpipe"
[project.scripts]
nbpipe = "nbpipe.cli:main"
[project.urls]
Homepage = "https://github.com/ngafar/nbpipe"
Repository = "https://github.com/ngafar/nbpipe"
Issues = "https://github.com/ngafar/nbpipe/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel.shared-data]
"nbpipe/labextension" = "share/jupyter/labextensions/nbpipe"
"jupyter-config.d/server-extension.json" = "etc/jupyter/jupyter_server_config.d/nbpipe.json"
[tool.hatch.build.targets.sdist]
artifacts = ["nbpipe/labextension"]
[dependency-groups]
dev = [
"jupyterlab>=4.0",
"pytest>=9.0.3",
"pytest-jupyter[server]>=0.11.0",
"ruff>=0.15.12",
]