-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from funkelab/docs
Update docs with videos and longer descriptions
- Loading branch information
Showing
5 changed files
with
86 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
project = 'Motile Plugin' | ||
copyright = '2024, Howard Hughes Medical Institute' | ||
author = 'Caroline Malin-Mayor' | ||
project = "Motile Plugin" | ||
copyright = "2024, Howard Hughes Medical Institute" | ||
author = "Caroline Malin-Mayor" | ||
|
||
extensions = ['sphinx.ext.autodoc', 'myst_parser', 'autoapi.extension', 'sphinx_rtd_theme'] | ||
autoapi_dirs = ['../../src/motile_plugin'] | ||
extensions = [ | ||
"sphinx.ext.autodoc", | ||
"myst_parser", | ||
"autoapi.extension", | ||
"sphinx_rtd_theme", | ||
"sphinxcontrib.video", | ||
] | ||
autoapi_dirs = ["../../src/motile_plugin"] | ||
|
||
exclude_patterns = [] | ||
|
||
|
||
|
||
# -- Options for HTML output ------------------------------------------------- | ||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | ||
|
||
html_theme = 'sphinx_rtd_theme' | ||
html_theme = "sphinx_rtd_theme" | ||
# html_static_path = ['_static'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
.. include:: ../../README.md | ||
:parser: myst_parser.sphinx_ | ||
Motile Napari Plugin | ||
==================== | ||
|
||
|source code| |tests| | ||
|
||
.. |source code| image:: https://img.shields.io/badge/GitHub-100000?logo=github&logoColor=white | ||
:target: https://github.com/funkelab/motile_napari_plugin | ||
|
||
.. |tests| image:: https://github.com/funkelab/motile-napari-plugin/workflows/tests/badge.svg | ||
:target: https://github.com/funkelab/motile-napari-plugin/actions | ||
|
||
.. video:: images/results_demo_720p.mp4 | ||
:width: 720 | ||
|
||
A plugin for tracking with `motile`_ in napari. | ||
Motile is a library that makes it easy to solve tracking problems using optimization | ||
by framing the task as an Integer Linear Program (ILP). | ||
See the `motile documentation`_ for more details on the concepts and method. | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
|
||
getting_started | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`search` | ||
.. _motile: https://github.com/funkelab/motile | ||
.. _github link: https://github.com/funkelab/motile_napari_plugin | ||
.. _motile documentation: https://funkelab.github.io/motile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,7 @@ docs = | |
sphinx-autoapi | ||
sphinx_rtd_theme | ||
myst-parser | ||
sphinxcontrib-video | ||
|
||
[options.package_data] | ||
* = *.yaml |