Skip to content

Commit

Permalink
Clean project and test files (#118)
Browse files Browse the repository at this point in the history
* Clean project and test files

* Release the KeyPointControls widget

* Undo commit

* Update README.md
  • Loading branch information
jeylau authored Feb 20, 2024
1 parent 68dc1d1 commit e9b778f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ 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.3.2"`; this is the library we now use to build GUIs.
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]:

Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "src/napari_deeplabcut/_version.py"

[tool.pytest.ini_options]
qt_api = "pyside6"
5 changes: 1 addition & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[metadata]
name = napari-deeplabcut
version = 0.2.1.3
description =napari + DeepLabCut annotation tool
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -17,7 +16,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Artificial Intelligence
Expand All @@ -43,7 +41,7 @@ install_requires =
qtpy>=2.4
scikit-image
tables
python_requires = >=3.8
python_requires = >=3.9
include_package_data = True
package_dir =
=src
Expand All @@ -59,7 +57,6 @@ napari.manifest =

[options.extras_require]
testing =
napari
pyside6==6.4.2
pytest
pytest-cov
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = py{38,39,310}-{linux,macos,windows}
envlist = py{39,310}-{linux,macos,windows}
isolated_build=true

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310

Expand All @@ -26,6 +25,7 @@ passenv =
DISPLAY
XAUTHORITY
NUMPY_EXPERIMENTAL_ARRAY_FUNCTION
PYTEST_QT_API
PYVISTA_OFF_SCREEN
extras =
testing
Expand Down

0 comments on commit e9b778f

Please sign in to comment.