File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -29,17 +29,17 @@ This is easily achieved by downloading
2929Installing from PyPI
3030--------------------
3131On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
32- PyPI <https://pypi.org/project/adafruit-circuitpython-display_button /> `_. To install for current user:
32+ PyPI <https://pypi.org/project/adafruit-circuitpython-display-button /> `_. To install for current user:
3333
3434.. code-block :: shell
3535
36- pip3 install adafruit-circuitpython-display_button
36+ pip3 install adafruit-circuitpython-display-button
3737
3838 To install system-wide (this may be required in some cases):
3939
4040.. code-block :: shell
4141
42- sudo pip3 install adafruit-circuitpython-display_button
42+ sudo pip3 install adafruit-circuitpython-display-button
4343
4444 To install in a virtual environment in your current project:
4545
@@ -48,7 +48,7 @@ To install in a virtual environment in your current project:
4848 mkdir project-name && cd project-name
4949 python3 -m venv .env
5050 source .env/bin/activate
51- pip3 install adafruit-circuitpython-display_button
51+ pip3 install adafruit-circuitpython-display-button
5252
5353 Usage Example
5454=============
Original file line number Diff line number Diff line change 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" , "adafruit_display_text" , "adafruit_display_shapes" ]
28+ autodoc_mock_imports = ["displayio" ]
2929
3030
3131intersphinx_mapping = {
Original file line number Diff line number Diff line change 44
55Adafruit-Blinka
66adafruit-blinka-displayio
7+ adafruit-circuitpython-display-text
8+ adafruit-circuitpython-display-shapes
Original file line number Diff line number Diff line change 3333 # Author details
3434 author = "Adafruit Industries" ,
353536- install_requires = ["Adafruit-Blinka" , "adafruit-blinka-displayio" ],
36+ install_requires = [
37+ "Adafruit-Blinka" ,
38+ "adafruit-blinka-displayio" ,
39+ "adafruit-circuitpython-display-text" ,
40+ "adafruit-circuitpython-display-shapes" ,
41+ ],
3742 # Choose your license
3843 license = "MIT" ,
3944 # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
You can’t perform that action at this time.
0 commit comments