setup.py 1.4 KB
Newer Older
A
Amador Pahim 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#!/bin/env python
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 LICENSE for more details.
#
# Copyright: Red Hat Inc. 2017
# Author: Amador Pahim <apahim@redhat.com>

from setuptools import setup, find_packages


setup(name='avocado-framework-plugin-resultsdb',
      description='Avocado Plugin to propagate Job results to Resultsdb',
      version=open("VERSION", "r").read().strip(),
      author='Avocado Developers',
      author_email='avocado-devel@redhat.com',
      url='http://avocado-framework.github.io/',
      packages=find_packages(),
      include_package_data=True,
27
      install_requires=['avocado-framework', 'resultsdb-api'],
A
Amador Pahim 已提交
28 29 30 31 32
      entry_points={
          'avocado.plugins.cli': [
              'resultsdb = avocado_resultsdb:ResultsdbCLI',
              ],
          'avocado.plugins.result_events': [
33 34 35
              'resultsdb = avocado_resultsdb:ResultsdbResultEvent',
              ],
          'avocado.plugins.result': [
A
Amador Pahim 已提交
36 37
              'resultsdb = avocado_resultsdb:ResultsdbResult',
              ]})