Merge pull request #7 from bmartin5692/pr/6

Pr/6
This commit is contained in:
Brian Martin
2019-06-14 07:30:27 -05:00
committed by GitHub
3 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ setup(
# https://packaging.python.org/en/latest/requirements.html # https://packaging.python.org/en/latest/requirements.html
install_requires=[ install_requires=[
'sleekxmpp>=1.3', 'sleekxmppfs>=1.3.4',
'click>=6', 'click>=6',
'requests>=2.18', 'requests>=2.18',
'pycryptodome>=3.4', 'pycryptodome>=3.4',
+3 -4
View File
@@ -10,10 +10,9 @@ import random
import ssl import ssl
import requests import requests
import stringcase import stringcase
from sleekxmppfs import ClientXMPP, Callback, MatchXPath
from sleekxmpp import ClientXMPP, Callback, MatchXPath from sleekxmppfs.xmlstream import ET
from sleekxmpp.xmlstream import ET from sleekxmppfs.exceptions import XMPPError
from sleekxmpp.exceptions import XMPPError
from paho.mqtt.client import Client as ClientMQTT from paho.mqtt.client import Client as ClientMQTT
from paho.mqtt import publish as MQTTPublish from paho.mqtt import publish as MQTTPublish
+1 -2
View File
@@ -1,9 +1,8 @@
from nose.tools import * from nose.tools import *
from sucks import * from sucks import *
from unittest.mock import Mock, patch from unittest.mock import Mock, patch
from sleekxmpp.exceptions import XMPPError from sleekxmppfs.exceptions import XMPPError
from paho.mqtt.client import MQTT_ERR_UNKNOWN as MQTTError from paho.mqtt.client import MQTT_ERR_UNKNOWN as MQTTError