-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 859 Bytes
/
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
[project]
name = "scape-utils"
version = "0.1.0"
description = "A simple package to read SCAPE 3D image (3DU16)"
authors = [{ name = "Chung-Kuan Chen", email = "[email protected]" }]
dependencies = ["numpy<2.0.0", "attrs", "tifffile", "h5py"]
readme = "README.md"
requires-python = ">= 3.9"
urls = { github = "https://github.com/lycantrope/scape_utils" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"ruff>=0.5.1",
"pytest>=8.2.2",
"roifile[all]",
"matplotlib",
"scikit-image>=0.24.0",
"ipython>=8.18.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/scape_utils"]
[tool.ruff.lint]
extend-select = ["I001"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]