Skip to content

Commit 5f40e4e

Browse files
authored
Merge pull request #1 from ianhi/docs-test
Fix docs rendering
2 parents b1d8222 + 5661db7 commit 5f40e4e

File tree

5 files changed

+20
-2
lines changed

5 files changed

+20
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
A multiclass point clicker for matplotlib
44

5+
![GIF of example usage](docs/_static/images/front-page.apng)
6+
7+
8+
Read the [Documentation](https://mpl-point-clicker.readthedocs.io/en/stable)
9+
510
## Installation
611

712
You can install using `pip`:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = 'Ian Hunt-Isaak'
2424

2525
# The full version, including alpha/beta/rc tags
26-
from mpl_point_clicker import __version__ as release
26+
from _version import __version__ as release
2727

2828

2929
# -- General configuration ---------------------------------------------------

mpl_point_clicker/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# Copyright (c) Ian Hunt-Isaak.
55
# Distributed under the terms of the Modified BSD License.
66

7-
version_info = (0, 1, 0)
7+
version_info = (0, 1, 1)
88
__version__ = ".".join(map(str, version_info))

readthedocs.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
python:
3+
version: 3.8
4+
install:
5+
- method: pip
6+
path: .
7+
extra_requirements:
8+
- doc
9+
10+
# Build documentation in the docs/ directory with Sphinx
11+
sphinx:
12+
configuration: docs/conf.py

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ doc =
3131
sphinx-copybutton
3232
sphinx-autobuild
3333
sphinx_gallery>=0.8.2
34+
autoapi
3435
dev =
3536
%(test)s
3637
%(doc)s

0 commit comments

Comments
 (0)