Compare commits

...

No commits in common. '4501428aed55a7d8af722ad4491e97228955ba47' and 'c74b49d6ad0389c517df62fb0b99c5edfe6a69db' have entirely different histories.

@ -3,8 +3,8 @@ import argparse
import sys
import time
import sensorlib
from mqttlib import MQTTClient
import .sensorlib
from .mqttlib import MQTTClient
def main():

@ -1,6 +1,6 @@
#!/usr/bin/env python
from distutils.core import setup
from setuptools import setup, find_packages
setup(name='mqtt-sensord',
version='0.1.0',
@ -9,7 +9,7 @@ setup(name='mqtt-sensord',
author_email='seba@someserver.de',
url='https://git.someserver.de/seba/mqtt-sensord/',
python_requires='>=3.5',
packages=['mqtt_sensord'],
packages=find_packages(),
install_requires=[
'paho-mqtt',
"Adafruid_DHT ; platform_machine=='armv6l' or platform_machine=='armv7l'"

Loading…
Cancel
Save