-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
79 lines (72 loc) · 1.5 KB
/
pyproject.toml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "impy-array"
dynamic = ["version"]
description = "Speed up coding/extending image analysis in Python."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
authors = [
{ name = "Hanjin Liu", email = "[email protected]" },
]
dependencies = [
"dask>=2021.6.0",
"numpy>=1.22",
"scipy>=1.7",
"pandas>=1.3",
"scikit-image>=0.20.0",
]
[project.optional-dependencies]
all = [
"tifffile",
"roifile",
"mrcfile",
"napari>=0.4.17",
"zarr",
]
napari = [
"napari>=0.4.17",
]
tiff = [
"tifffile",
]
mrc = [
"mrcfile",
]
zarr = [
"zarr",
]
testing = [
"pytest",
"dask_image",
"tifffile",
"roifile",
"mrcfile",
"zarr",
]
[project.scripts]
impy = "impy.__main__:main"
[project.urls]
Download = "https://github.com/hanjinliu/impy"
[tool.hatch.version]
path = "impy/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/impy",
]
[tool.hatch.build.targets.wheel]
packages = [
"/impy"
]