2016-04-27 07:14:00 -04:00
|
|
|
# installer for netatmo driver
|
|
|
|
# Copyright 2015 Matthew Wall
|
2017-01-22 11:48:48 -05:00
|
|
|
# Distributed under the terms of the GNU Public License (GPLv3)
|
2016-04-27 07:14:00 -04:00
|
|
|
|
|
|
|
from setup import ExtensionInstaller
|
|
|
|
|
|
|
|
def loader():
|
|
|
|
return NetatmoInstaller()
|
|
|
|
|
|
|
|
class NetatmoInstaller(ExtensionInstaller):
|
|
|
|
def __init__(self):
|
|
|
|
super(NetatmoInstaller, self).__init__(
|
2017-01-22 11:50:47 -05:00
|
|
|
version="0.8",
|
2016-04-27 07:14:00 -04:00
|
|
|
name='netatmo',
|
|
|
|
description='Driver for netatmo weather stations.',
|
|
|
|
author="Matthew Wall",
|
|
|
|
author_email="mwall@users.sourceforge.net",
|
|
|
|
files=[('bin/user', ['bin/user/netatmo.py'])]
|
|
|
|
)
|