Skip to content

Commit b11a801

Browse files
authored
Merge pull request #30 from rhooper/fix-package-name
fix package name
2 parents 7aa1b4d + 04d5df0 commit b11a801

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ This is easily achieved by downloading
2929
Installing from PyPI
3030
=====================
3131
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
32-
PyPI <https://pypi.org/project/adafruit-circuitpython-led animation/>`_. To install for current user:
32+
PyPI <https://pypi.org/project/adafruit-circuitpython-led-animation/>`_. To install for current user:
3333

3434
.. code-block:: shell
3535
36-
pip3 install adafruit-circuitpython-led animation
36+
pip3 install adafruit-circuitpython-led-animation
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-led animation
42+
sudo pip3 install adafruit-circuitpython-led-animation
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-led animation
51+
pip3 install adafruit-circuitpython-led-animation
5252
5353
Usage Example
5454
=============

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
long_description = f.read()
1919

2020
setup(
21-
name="adafruit-circuitpython-led animation",
21+
name="adafruit-circuitpython-led-animation",
2222
use_scm_version=True,
2323
setup_requires=["setuptools_scm"],
2424
description="CircuitPython helper for LED colors and animations.",
2525
long_description=long_description,
2626
long_description_content_type="text/x-rst",
2727
# The project's main homepage.
28-
url="https://github.com/adafruit/Adafruit_CircuitPython_LED Animation",
28+
url="https://github.com/adafruit/Adafruit_CircuitPython_LED_Animation",
2929
# Author details
3030
author="Adafruit Industries",
3131
author_email="circuitpython@adafruit.com",
@@ -49,5 +49,5 @@
4949
# simple. Or you can use find_packages().
5050
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
5151
# CHANGE `py_modules=['...']` TO `packages=['...']`
52-
py_modules=["adafruit_led animation"],
52+
py_modules=["adafruit_led_animation"],
5353
)

0 commit comments

Comments
 (0)