-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 845 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["anyplotlib"]
[project]
name = "anyplotlib"
version = "0.1.0"
description = "A plotting library using python, javascript and anywidget for performant in browser plotting."
requires-python = ">=3.10"
dependencies = [
"anywidget>=0.9.0",
"colorcet>=3.0",
"numpy>=2.0.0",
"traitlets>=5.0.0",
]
[project.optional-dependencies]
docs = [
"sphinx>=8.0",
"pydata-sphinx-theme>=0.16",
"sphinx-design>=0.6",
"sphinx-gallery>=0.18",
"pillow>=10.0",
"matplotlib>=3.7",
"playwright>=1.58.0",
"plotly>=5.0",
"bokeh>=3.0",
"scipy>=1.15.3",
]
jupyter = [
"jupyterlab>=4.5.5",
]
[dependency-groups]
dev = [
"playwright>=1.58.0",
"pytest>=9.0.2",
"scipy>=1.15.3",
]