|
18 | 18 | long_description = f.read()
|
19 | 19 |
|
20 | 20 | setup(
|
21 |
| - name='adafruit-circuitpython-ds2413', |
| 21 | + name='adafruit-circuitpython-ds18x20', |
22 | 22 |
|
23 | 23 | use_scm_version=True,
|
24 | 24 | setup_requires=['setuptools_scm'],
|
25 | 25 |
|
26 |
| - description='CircuitPython library for DS2413 1-wire two channel GPIO breakout.', |
| 26 | + description='CircuitPython driver for Dallas 1-Wire temperature sensor.', |
27 | 27 | long_description=long_description,
|
28 | 28 | long_description_content_type='text/x-rst',
|
29 | 29 |
|
30 | 30 | # The project's main homepage.
|
31 |
| - url='https://github.com/adafruit/Adafruit_CircuitPython_DS2413', |
| 31 | + url='https://github.com/adafruit/Adafruit_CircuitPython_DS18X20', |
32 | 32 |
|
33 | 33 | # Author details
|
34 | 34 | author='Adafruit Industries',
|
|
52 | 52 | ],
|
53 | 53 |
|
54 | 54 | # What does your project relate to?
|
55 |
| - keywords='adafruit 1-wire gpio controller hardware breakout micropython circuitpython', |
| 55 | + keywords='adafruit 1-wire temperature sensor ds18x20 ' |
| 56 | + 'hardware breakout micropython circuitpython', |
56 | 57 |
|
57 | 58 | # You can just specify the packages manually here if your project is
|
58 | 59 | # simple. Or you can use find_packages().
|
59 |
| - py_modules=['adafruit_ds2413'], |
| 60 | + py_modules=['adafruit_ds18x20'], |
60 | 61 | )
|
0 commit comments