Skip to content
Open
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ repos:
hooks:
- id: check-manifest
args: [--no-build-isolation]
additional_dependencies: [setuptools-scm, wheel]
additional_dependencies: ["setuptools>=77", "wheel", "setuptools_scm[toml]"]
- repo: https://github.com/codespell-project/codespell
# Configuration for codespell is in pyproject.toml
rev: v2.4.1
Expand Down
12 changes: 5 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ readme = "README.md"
requires-python = ">=3.11.0"
dynamic = ["version"]

license = { text = "BSD-3-Clause" }
license = "BSD-3-Clause"
license-files = ["LICENSE"]

dependencies = [
"numpy",
Expand All @@ -24,8 +25,8 @@ dependencies = [
"xarray[accel,viz]",
"PyYAML",
"napari-video",
"pyvideoreader>=0.5.3", # since switching to depend on openCV-headless
"qt-niu", # needed for collapsible widgets
"pyvideoreader>=0.5.3", # since switching to depend on openCV-headless
"qt-niu", # needed for collapsible widgets
"loguru",
]

Expand All @@ -37,7 +38,6 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Framework :: napari",
]

Expand All @@ -52,9 +52,7 @@ entry-points."napari.manifest".movement = "movement.napari:napari.yaml"
"User Support" = "https://neuroinformatics.zulipchat.com/#narrow/stream/406001-Movement"

[project.optional-dependencies]
napari = [
"napari[all]>=0.5.0",
]
napari = ["napari[all]>=0.5.0"]
dev = [
"pytest",
"pytest-cov",
Expand Down