-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.12 KB
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
[project]
name = "ptylab"
version = "0.2.5"
description = "A cross-platform, open-source inverse modeling toolbox for conventional and Fourier ptychography"
authors = [
{ name = "Lars Loetgering", email = "lars.loetgering@fulbrightmail.org" },
{ name = "PtyLab Team" },
]
readme = "README.md"
requires-python = ">=3.10, <3.14"
dependencies = [
"numpy~=2.0",
"matplotlib~=3.7",
"h5py~=3.9",
"scipy~=1.11",
"scikit-image>=0.21.0",
"scikit-learn~=1.3",
"tqdm~=4.65",
"pyqtgraph~=0.13",
"tables~=3.8",
"bokeh~=3.2",
"PyQt5~=5.15",
"ipython~=8.18",
"ipywidgets>=8.1.8",
]
[project.optional-dependencies]
dev = [
"black~=23.7",
"ipykernel~=6.25",
"pytest~=9.0",
"imageio~=2.0",
]
gpu = ["cupy-cuda12x[ctk]"]
tensorflow = ["tensorflow~=2.14"]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.6",
"mkdocs-jupyter>=0.24",
]
[project.scripts]
ptylab = "PtyLab.utils.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["uv_build>=0.6.1,<0.11"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "PtyLab"
module-root = ""