Skip to content
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
long_description = f.read()

setup(
name='adafruit-circuitpython-drv2605',
name='adafruit-circuitpython-ds2413',

use_scm_version=True,
setup_requires=['setuptools_scm'],

description='CircuitPython library for DRV2605 haptic motor controller.',
description='CircuitPython library for DS2413 haptic motor controller.',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is a 'DS2413 1-Wire Dual Channel Addressable Switch'

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops

long_description=long_description,
long_description_content_type='text/x-rst',

Expand Down Expand Up @@ -56,5 +56,5 @@

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
py_modules=['adafruit_drv2605'],
py_modules=['adafruit_ds2413'],
)