Skip to content

Commit

Permalink
Add tsys01 library
Browse files Browse the repository at this point in the history
  • Loading branch information
ROV Laptop committed Jun 1, 2024
1 parent 400323b commit 1a5a10e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies = [
'pytest-xvfb',
'Pyside2', # can be removed when ament_pep257 is gone
'TCA9555@git+https://github.com/InvincibleRMC/TCA9555',
'bluerobotics-tsys01@git+https://github.com/bluerobotics/tsys01-python',
'pymavlink',
'mavproxy'
]
Expand Down
4 changes: 2 additions & 2 deletions src/pi/temp_sensor/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[develop]
script_dir=$base/lib/flood_detection
script_dir=$base/lib/temp_sensor
[install]
install_scripts=$base/lib/flood_detection
install_scripts=$base/lib/temp_sensor
12 changes: 6 additions & 6 deletions src/pi/temp_sensor/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from glob import glob
import os

package_name = 'flood_detection'
package_name = 'temp_sensor'

setup(
name=package_name,
Expand All @@ -18,15 +18,15 @@
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Michael Carlstrom',
maintainer_email='rmc@carlstrom.com',
description='Flood detection',
maintainer='Benjamin Poulin',
maintainer_email='bwp18@case.edu',
description='Temperature sensor',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'flood_detector = flood_detection.flood_detector:main',
'dry_run = flood_detection.gpio_reader_dry_run:main'
# 'flood_detector = flood_detection.flood_detector:main',
# 'dry_run = flood_detection.gpio_reader_dry_run:main'
],
},
)

0 comments on commit 1a5a10e

Please sign in to comment.