-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ec8e86
commit c81d721
Showing
8 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
import LCD1602 | ||
from . import LCD1602 | ||
import time | ||
import datetime as dt | ||
import threading | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,21 @@ | |
|
||
setup( | ||
name='RasPyDHT', | ||
version='0.1dev', | ||
version='1.0-b2', | ||
author='William Ledda', | ||
author_email='[email protected]', | ||
description='Temperature and humidity monitor with RaspberryPi', | ||
long_description='Monitoring of temperature and humidity with a DHT connected to a RaspberryPi board', | ||
url='https://github.com/williamledda/RasPyDHT', | ||
packages=find_packages(), | ||
install_requires=[ | ||
'Adafruit-DHT', | ||
'paho-mqtt', | ||
'smbus', | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'Development Status :: 4 - Beta', | ||
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', | ||
], | ||
) |