Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13",]
platform: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down
28 changes: 22 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,21 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
# add your package dependencies here
dependencies = []
dependencies = [
"yaozarrs[io] >= 0.3",
"typer >= 0.12",
"rich >= 13",
"numpy >= 1.24",
"cellier[pyside]>=0.0.13",
"jupyterlab>=4.5.6",
"aiohttp >= 3.9",
"zarr >= 3.0",
"s3fs",
"tensorstore",
]

# https://peps.python.org/pep-0621/#dependencies-optional-dependencies
# add dependencies for "extra" features here. Not dev dependencies.
Expand All @@ -47,17 +57,16 @@ repository = "https://github.com/kevinyamauchi/oz-viewer"

# Entry points
# https://peps.python.org/pep-0621/#entry-points
# same as console_scripts entry point
# [project.scripts]
# oz-viewer-cli = "oz_viewer:main_cli"
[project.scripts]
oz-viewer = "oz_viewer._cli:app"

# [project.entry-points."some.group"]
# tomatoes = "oz_viewer:main_tomatoes"

# https://peps.python.org/pep-0735/
# setup with `uv sync` or `pip install -e . --group dev`
[dependency-groups]
test = ["pytest", "pytest-cov"]
test = ["pytest", "pytest-cov", "zarr >= 3.1", "ome-zarr"]
dev = [
{ include-group = "test" },
"ipython",
Expand Down Expand Up @@ -139,3 +148,10 @@ ignore = [
# https://github.com/crate-ci/typos/blob/master/docs/reference.md
[tool.typos.default]
extend-ignore-identifiers-re = []

[tool.typos.default.extend-words]
# OME (Open Microscopy Environment) is a domain term, not a typo for "SOME"
OME = "OME"
ome = "ome"
# lod = Level of Detail (graphics term), not a typo for "load"
lod = "lod"
Loading