# Copyright (C) 2010,2011 Linaro Limited # # Author: Zygmunt Krynicki <*****@*****.**> # # This file is part of lava-dashboard-tool. # # lava-dashboard-tool is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 # as published by the Free Software Foundation # # lava-dashboard-tool 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 General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with lava-dashboard-tool. If not, see <http://www.gnu.org/licenses/>. """ Lava Tool package """ from lava_tool import version __version__ = version()
def invoke(self): from lava_tool import version print "Dashboard client version: {version}".format( version=version())
# but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with lava-tool. If not, see <http://www.gnu.org/licenses/>. from setuptools import setup, find_packages from os.path import dirname, join from lava_tool import version entry_points = open(join(dirname(__file__), 'entry_points.ini')).read() setup( name='lava-tool', version=version(), author="Zygmunt Krynicki", author_email="*****@*****.**", namespace_packages=['lava'], packages=find_packages(), description="Command line utility for Linaro validation services", url='https://launchpad.net/lava-tool', test_suite='lava_tool.tests.test_suite', license="LGPLv3", entry_points=entry_points, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", ("License :: OSI Approved :: GNU Library or Lesser General Public" " License (LGPL)"), "Operating System :: OS Independent",