-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 833 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 833 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
43
44
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "holodoppler"
version = "0.11.0"
description = "HoloDoppler processing and preview tools."
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.13"
dependencies = [
"numpy>=2.3.4",
"tqdm>=4.67.1",
"matplotlib>=3.10.7",
"scipy>=1.17.0",
"h5py",
"opencv-python",
"cinereader>=1.4.3",
"cupy-cuda13x>=14.0.1",
"lblprof>=0.1.8",
"imageio>=2.37.3",
"tkinterdnd2",
]
[project.optional-dependencies]
build = [
"pyinstaller>=6.0",
]
[project.scripts]
holodoppler = "holodoppler.__main__:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
holodoppler = ["py.typed"]
[tool.pyinstaller]
name = "HoloDoppler"