-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.03 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
[project]
name = "ptylab"
version = "0.2.4"
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",
]
[project.optional-dependencies]
dev = [
"black~=23.7",
"ipykernel~=6.25",
"pytest~=9.0",
"imageio~=2.0",
]
cuda12 = ["cupy-cuda12x"]
cuda13 = ["cupy-cuda13x"]
tensorflow = ["tensorflow~=2.14"]
[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 = ""