diff --git a/README.rst b/README.rst index cf3f7e4..c64f97c 100644 --- a/README.rst +++ b/README.rst @@ -29,17 +29,17 @@ This is easily achieved by downloading Installing from PyPI ===================== On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from -PyPI `_. To install for current user: +PyPI `_. To install for current user: .. code-block:: shell - pip3 install adafruit-circuitpython-led animation + pip3 install adafruit-circuitpython-led-animation To install system-wide (this may be required in some cases): .. code-block:: shell - sudo pip3 install adafruit-circuitpython-led animation + sudo pip3 install adafruit-circuitpython-led-animation To install in a virtual environment in your current project: @@ -48,7 +48,7 @@ To install in a virtual environment in your current project: mkdir project-name && cd project-name python3 -m venv .env source .env/bin/activate - pip3 install adafruit-circuitpython-led animation + pip3 install adafruit-circuitpython-led-animation Usage Example ============= diff --git a/setup.py b/setup.py index b95e951..4ce2bd1 100644 --- a/setup.py +++ b/setup.py @@ -18,14 +18,14 @@ long_description = f.read() setup( - name="adafruit-circuitpython-led animation", + name="adafruit-circuitpython-led-animation", use_scm_version=True, setup_requires=["setuptools_scm"], description="CircuitPython helper for LED colors and animations.", long_description=long_description, long_description_content_type="text/x-rst", # The project's main homepage. - url="https://github.com/adafruit/Adafruit_CircuitPython_LED Animation", + url="https://github.com/adafruit/Adafruit_CircuitPython_LED_Animation", # Author details author="Adafruit Industries", author_email="circuitpython@adafruit.com", @@ -49,5 +49,5 @@ # simple. Or you can use find_packages(). # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER, # CHANGE `py_modules=['...']` TO `packages=['...']` - py_modules=["adafruit_led animation"], + py_modules=["adafruit_led_animation"], )