Compare commits

...

6 Commits

Author SHA1 Message Date
Paulus Schoutsen 3a5a94413b merge branch 'dev' 2015-09-01 08:50:56 -07:00
Paulus Schoutsen 03ceb667ba Hotfix for nmap -> v7.1 2015-09-01 08:50:45 -07:00
Paulus Schoutsen 40807f1ee0 Merge branch 'dev' 2015-09-01 01:56:18 -07:00
Paulus Schoutsen abb8958775 Setup.py fixes 2015-09-01 01:56:13 -07:00
Paulus Schoutsen ef141ef608 Add MANIFEST.in 2015-09-01 01:36:15 -07:00
Paulus Schoutsen 3ea91f917d Add MANIFEST.in 2015-09-01 01:36:00 -07:00
4 changed files with 9 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
recursive-exclude tests *
@@ -114,7 +114,7 @@ class NmapDeviceScanner(object):
from nmap import PortScanner, PortScannerError
scanner = PortScanner()
options = "-sP --host-timeout 5"
options = "-F --host-timeout 5"
exclude_targets = set()
if self.home_interval:
now = dt_util.now()
+1 -1
View File
@@ -1,6 +1,6 @@
""" Constants used by Home Assistant components. """
__version__ = "0.7.0"
__version__ = "0.7.1"
# Can be used to specify a catch all when registering state or event listeners.
MATCH_ALL = '*'
+6 -2
View File
@@ -18,8 +18,12 @@ PACKAGE_DATA = \
'homeassistant.components.frontend.www_static': ['*.*'],
'homeassistant.components.frontend.www_static.images': ['*.*']}
REQUIRES = \
[line.strip() for line in open('requirements.txt', 'r')]
REQUIRES = [
'requests>=2,<3',
'pyyaml>=3.11,<4',
'pytz>=2015.4',
'pip>=7.0.0',
]
setup(
name=PACKAGE_NAME,