-
Notifications
You must be signed in to change notification settings - Fork 83
/
pyproject.toml
117 lines (104 loc) · 2.94 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "itkwidgets"
authors = [{name = "Matt McCormick", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version",]
description = "An elegant Python interface for visualization on the web platform to interactively generate insights into multidimensional images, point sets, and geometry."
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
'Development Status :: 3 - Alpha',
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Graphics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
keywords = [
"jupyter",
"jupyterlab-extension",
"widgets",
"itk",
"imaging",
"visualization",
"webgl",
"webgpu",
]
requires-python = ">=3.8"
dependencies = [
"itkwasm >= 1.0b.178",
"imjoy-rpc >= 0.5.42",
"imjoy-utils >= 0.1.2",
"importlib_metadata",
"ngff-zarr >= 0.8.7; sys_platform != \"emscripten\"",
"ngff-zarr[dask-image] >= 0.8.7; sys_platform == \"emscripten\"",
"numcodecs",
"zarr",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build]
exclude = [
"/js/node_modules",
"/examples",
]
[project.urls]
Home = "https://itkwidgets.readthedocs.io/en/latest/"
Documentation = "https://itkwidgets.readthedocs.io/en/latest/"
Source = "https://github.com/InsightSoftwareConsortium/itkwidgets"
[project.optional-dependencies]
all = [
"imjoy-jupyterlab-extension",
"imjoy-elfinder[jupyter]",
"aiohttp <4.0"
]
lab = [
"imjoy-jupyterlab-extension",
"imjoy-elfinder[jupyter]",
"aiohttp <4.0"
]
cli = [
"hypha >= 0.15.28",
"imgcat",
"IPython >= 8.4.0",
"itk-io >= 5.3.0",
"ngff-zarr[cli]",
"playwright",
]
notebook = [
"imjoy-jupyterlab-extension",
"imjoy-elfinder[jupyter]",
"notebook >= 7"
]
test = [
"pytest >=2.7.3",
"nbmake",
"pip",
]
doc = ["sphinx"]
[project.scripts]
itkwidgets = "itkwidgets.standalone_server:cli_entrypoint"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
itkwidgets = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
all = { features = ["all"], solve-group = "default" }
cli = { features = ["cli"], solve-group = "default" }
doc = { features = ["doc"], solve-group = "default" }
lab = { features = ["lab"], solve-group = "default" }
notebook = { features = ["notebook"], solve-group = "default" }
test = { features = ["test", "all", "cli", "lab", "notebook"], solve-group = "default" }
[tool.pixi.tasks]
[tool.pixi.feature.test.tasks]
start = "jupyter lab examples"