-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (57 loc) · 2.18 KB
/
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
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
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "graphviz-anywidget"
description = "Interactive Graphviz visualization widget for Jupyter notebooks using anywidget."
requires-python = ">=3.10"
dynamic = ["version"]
maintainers = [{ name = "Bas Nijholt", email = "[email protected]" }]
license = { text = "MIT" }
dependencies = ["anywidget"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: IPython",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Widget Sets",
"Typing :: Typed",
]
keywords = ["jupyter", "widget", "visualization", "graphviz", "graph", "network", "interactive"]
[project.readme]
content-type = "text/markdown"
file = "README.md"
[project.urls]
homepage = "https://github.com/pipefunc/graphviz-anywidget"
documentation = "https://github.com/pipefunc/graphviz-anywidget"
repository = "https://github.com/pipefunc/graphviz-anywidget"
[project.optional-dependencies]
dev = ["watchfiles", "jupyterlab", "pytest"]
# Dependency groups (recognized by `uv`). For more details, visit:
# https://peps.python.org/pep-0735/
[dependency-groups]
dev = ["watchfiles", "jupyterlab"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
only-packages = true
artifacts = ["src/graphviz_anywidget/static/*"]
[tool.hatch.build.hooks.jupyter-builder]
build-function = "hatch_jupyter_builder.npm_builder"
ensured-targets = ["src/graphviz_anywidget/static/widget.js"]
skip-if-exists = ["src/graphviz_anywidget/static/widget.js"]
dependencies = ["hatch-jupyter-builder>=0.5.0"]
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
npm = "npm"
build_cmd = "build"