Skip to content

fix package name #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://pypi.org/project/adafruit-circuitpython-led animation/>`_. To install for current user:
PyPI <https://pypi.org/project/adafruit-circuitpython-led-animation/>`_. 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:

Expand All @@ -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
=============
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"],
)