Skip to content

Commit

Permalink
Merge pull request #8 from adafruit/setup-py-fix
Browse files Browse the repository at this point in the history
Fix setup.py fail
  • Loading branch information
sommersoft authored Nov 12, 2018
2 parents 2e474e2 + 5790187 commit e1968da
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
long_description = f.read()

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

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

description='CircuitPython library for DS2413 1-wire two channel GPIO breakout.',
description='CircuitPython driver for Dallas 1-Wire temperature sensor.',
long_description=long_description,
long_description_content_type='text/x-rst',

# The project's main homepage.
url='https://github.com/adafruit/Adafruit_CircuitPython_DS2413',
url='https://github.com/adafruit/Adafruit_CircuitPython_DS18X20',

# Author details
author='Adafruit Industries',
Expand All @@ -52,9 +52,10 @@
],

# What does your project relate to?
keywords='adafruit 1-wire gpio controller hardware breakout micropython circuitpython',
keywords='adafruit 1-wire temperature sensor ds18x20 '
'hardware breakout micropython circuitpython',

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

0 comments on commit e1968da

Please sign in to comment.