-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (85 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
98 lines (85 loc) · 2.48 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "tensorswitch"
version = "2.0.1"
requires-python = ">= 3.11"
dependencies = [
"tensorstore>=0.1.79,<0.2",
"psutil",
"requests",
"numpy", "ome-zarr-models @ git+https://github.com/ome-zarr-models/ome-zarr-models-py.git",
"panel>=1.4.0",
"param",
"sqlalchemy",
"apscheduler",
"openai",
"pydantic",
"watchdog", "pylibczirw>=5.1.1,<6", "bioio>=3.2.0,<4", "bioio-czi>=2.1.0,<3",
"bioio-bioformats>=1.0.0",
"bioformats_jar",
]
description = "This package provides a unified entry point and organized task modules for managing N5/Zarr dataset conversions and downsampling. It centralizes your workflow into a single pipeline to reduce manual work and errors."
readme = "README.md"
authors = [
{name = "Diyi K Chen", email = "chend@janelia.hhmi.org"},
{name = "Mark Kittisopiikul", email = "kittisopikulm@janelia.hhmi.org"}
]
license = "BSD-3-Clause"
license-files = ["LICENSE.md"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.scripts]
tensorswitch-v2 = "tensorswitch_v2.__main__:main"
[project.urls]
Homepage = "https://github.com/JaneliaSciComp/tensorswitch"
Issues = "https://github.com/JaneliaSciComp/tensorswitch/issues"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/tensorswitch_v2"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
tensorswitch = { path = ".", editable = true }
[tool.pixi.tasks]
tensorswitch-v2 = "python -m tensorswitch_v2"
[tool.pixi.dependencies]
scyjava = ">=1.12.0,<2"
psutil = ">=7.0.0,<8"
requests = ">=2.32.3,<3"
pytest = ">=8.3.5,<9"
numpy = ">=2.2.5,<3"
tifffile = ">=2025.6.11,<2026"
dask = ">=2025.7.0,<2026"
dask-image = ">=2024.5.3,<2025"
dask-jobqueue = "==0.9.0"
cachey = ">=0.2.1,<0.3"
matplotlib = ">=3.10.3,<4"
zarr = ">=3.1.1,<4"
ome-types = ">=0.6.0,<0.7"
nd2 = ">=0.10.3,<0.11"
h5py = ">=3.14.0,<4"
panel = ">=1.4.0,<2"
param = ">=2.1.0,<3"
sqlalchemy = ">=2.0.0,<3"
apscheduler = ">=3.10.0,<4"
openai = ">=1.0.0,<2"
pydantic = ">=2.0.0,<3"
watchdog = ">=4.0.0,<5"
pandas = "*"
openpyxl = "*"
awscli = ">=2.28.1,<3"
aicspylibczi = ">=3.3.1,<4"
pip = ">=25.3,<26"
[tool.pixi.feature.ipykernel.dependencies]
ipykernel = "*"
[tool.pixi.environments]
jupyter = ["ipykernel"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests/tensorswitch_v2"]