Skip to content

Commit ce9fdd3

Browse files
Get the API docs to build
Add requirement for adafruit-circuitpython-debouncer
1 parent b593468 commit ce9fdd3

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Introduction
22
============
33

4-
.. image:: https://readthedocs.org/projects/adafruit-circuitpython-cursorcontrol/badge/?version=latest
4+
.. image:: https://readthedocs.org/projects/cursorcontrol/badge/?version=latest
55
:target: https://circuitpython.readthedocs.io/projects/cursorcontrol/en/latest/
66
:alt: Documentation Status
77

adafruit_cursorcontrol/cursorcontrol.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44

55
"""
6-
`adafruit_cursorcontrol`
6+
`adafruit_cursorcontrol.cursorcontrol`
77
================================================================================
88
99
Mouse cursor for interaction with CircuitPython UI elements.
@@ -23,7 +23,7 @@
2323
import displayio
2424

2525
__version__ = "0.0.0-auto.0"
26-
__repo__ = "https://github.com/adafruit/%3Cspan%20class="x x-first x-last">Adafruit_CircuitPython_Cursor.git"
26+
__repo__ = "https://github.com/adafruit/%3Cspan%20class="x x-first x-last">Adafruit_CircuitPython_CursorControl.git"
2727

2828

2929
class Cursor:

adafruit_cursorcontrol/cursorcontrol_cursormanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44

55
"""
6-
`adafruit_cursorcontrol_cursormanager`
6+
`adafruit_cursorcontrol.cursorcontrol_cursormanager`
77
================================================================================
88
Simple interaction user interface interaction for Adafruit_CursorControl.
99
* Author(s): Brent Rubell

docs/api.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
API
2-
====
3-
.. automodule:: adafruit_cursorcontrol
1+
.. automodule:: adafruit_cursorcontrol.cursorcontrol
2+
:members:
3+
4+
.. automodule:: adafruit_cursorcontrol.cursorcontrol_cursormanager
45
:members:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Uncomment the below if you use native CircuitPython modules such as
2626
# digitalio, micropython and busio. List the modules you use. Without it, the
2727
# autodoc module docs will fail to generate with a warning.
28-
autodoc_mock_imports = ["displayio"]
28+
autodoc_mock_imports = ["displayio", "gamepadshift"]
2929

3030

3131
intersphinx_mapping = {

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
# SPDX-License-Identifier: Unlicense
44

55
Adafruit-Blinka
6+
adafruit-circuitpython-debouncer

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# Author details
3434
author="Adafruit Industries",
3535
author_email="[email protected]",
36-
install_requires=["Adafruit-Blinka"],
36+
install_requires=["Adafruit-Blinka", "adafruit-circuitpython-debouncer"],
3737
# Choose your license
3838
license="MIT",
3939
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)