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: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ A napari plugin for keypoint annotation, also used within DeepLabCut!

If you installed DeepLabCut[gui], this plugin is already installed. However, you can also use this as a stand-alone keypoint annotator without using DeepLabCut. Instructions below!

Start by installing PySide6 with `pip install "pyside6==6.4.2"`; this is the library we now use to build GUIs.

You can then install `napari-deeplabcut` via [pip]:

pip install napari-deeplabcut
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Image Processing
Topic :: Scientific/Engineering :: Visualization
Expand All @@ -30,19 +31,20 @@ project_urls =
[options]
packages = find:
install_requires =
pyside6==6.4.2
dask-image
matplotlib>=3.3
napari==0.4.18
natsort
numpy
numpy<2
opencv-python-headless
pandas
pyyaml
qtpy>=2.4
scikit-image
scipy
tables
python_requires = >=3.9
python_requires = >=3.9,<3.12
include_package_data = True
package_dir =
=src
Expand All @@ -58,7 +60,6 @@ napari.manifest =

[options.extras_require]
testing =
pyside6==6.4.2
pytest
pytest-cov
pytest-qt
Expand Down