-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 749 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 749 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
[project]
name = "yabplot"
version = "0.5.1"
description = "yet another brain plot"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cmocean>=4.0.3",
"ipywidgets>=8.1.8",
"matplotlib>=3.10.7",
"nibabel>=5.3.2",
"pandas>=2.3.3",
"pooch>=1.8.2",
"pyvista>=0.46.4",
"scikit-image>=0.25.2",
"trame>=3.12.0",
"trame-vtk>=2.10.0",
"trame-vuetify>=3.1.0",
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["yabplot*"]
[tool.setuptools.package-data]
"yabplot" = ["*.txt", "*.json"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
]