-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.1 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 = "zarrd"
version = "0.1.0"
description = "Desktop and command line tool for inspecting, editing, and converting Zarr v2 and v3 stores"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Jules Poirot" }]
keywords = ["zarr", "gui", "qt", "pyside6", "conversion", "netcdf"]
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Environment :: X11 Applications :: Qt",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=2.4.6",
"pyside6>=6.11.1",
"zarr>=3.0",
]
[project.urls]
Repository = "https://github.com/polymood/zarrd"
[project.scripts]
zarrd = "zarrd.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["zarrd"]
[dependency-groups]
dev = [
"mypy>=2.1.0",
]
[tool.mypy]
python_version = "3.12"
strict = true
warn_unused_ignores = false
disallow_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["zarr.*", "numcodecs.*"]
ignore_missing_imports = true