Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
101 lines (89 loc) · 2.38 KB

File metadata and controls

101 lines (89 loc) · 2.38 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = [
"hatch",
"hatchling",
"hatch-nodejs-version",
"hatch-build-scripts",
"jupyterlab>=3,<5",
]
build-backend = "hatchling.build"
[project]
name = "ipycanvas"
description = "Interactive widgets library exposing the browser's Canvas API"
readme = "README.md"
authors = [
{ name = "Martin Renou", email = "martin.renou@gmail.com" },
]
keywords = [
"IPython",
"Jupyter",
"Widgets",
"Canvas",
]
classifiers = [
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"ipywidgets>=7.6.0,<9",
"numpy",
"pillow>=6.0",
]
dynamic = [
"version",
]
[project.license]
file = "LICENSE.txt"
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/jupyter-widgets-contrib/ipycanvas"
[tool.hatch.version]
source = "nodejs"
[tool.hatch.build]
artifacts = [
"ipycanvas/nbextension/static/index.*",
"ipycanvas/labextension",
"ipycanvas/_version.py",
]
[tool.hatch.build.targets.wheel.shared-data]
"ipycanvas/nbextension/static" = "share/jupyter/nbextensions/ipycanvas"
"ipycanvas/labextension" = "share/jupyter/labextensions/ipycanvas"
"ipycanvas.json" = "etc/jupyter/nbconfig/notebook.d/ipycanvas.json"
[tool.hatch.build.targets.sdist]
exclude = [
".github",
"ipycanvas/_version.py",
]
[tool.hatch.build.hooks.jupyter-builder]
ensured-targets = [
"ipycanvas/offscreen_canvas/js/init.js",
"ipycanvas/nbextension/static/index.js",
"ipycanvas/labextension/package.json",
]
dependencies = [
"hatch-jupyter-builder>=0.8.1",
]
build-function = "hatch_jupyter_builder.npm_builder"
[[tool.hatch.build.hooks.build-scripts.scripts]]
work_dir = "."
commands = ['python scripts/write_version.py']
# _version.py is already mentioned in top-level build artifact
artifacts = []
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
path = "."
build_cmd = "build:extensions"
npm = [
"yarn",
]
[tool.check-wheel-contents]
ignore = ["W002"]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.