# -*- coding: utf-8 -*- # # BatInfo # A simple Python lib to retrieve battery information # # Copyright (C) 2016 Nicolargo # # BatInfo is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # BatInfo is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . __appname__ = "batinfo" __version__ = "0.4.2" __author__ = "Nicolas Hennion " __licence__ = "LGPLv3" __all__ = ['batteries', 'battery', 'Batteries', 'Battery'] from batinfo.battery import Battery, Batteries # Let the old names for compatibility battery = Battery batteries = Batteries