avocado-framework/avocado

View on GitHub
optional_plugins/html/setup.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/bin/env python3
# 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. 2016
# Author: Cleber Rosa <crosa@redhat.com>

import os

from setuptools import find_packages, setup

BASE_PATH = os.path.dirname(__file__)
with open(os.path.join(BASE_PATH, "VERSION"), "r", encoding="utf-8") as version_file:
    VERSION = version_file.read().strip()


def get_long_description():
    with open(os.path.join(BASE_PATH, "README.rst"), "rt", encoding="utf-8") as readme:
        readme_contents = readme.read()
    return readme_contents


setup(
    name="avocado-framework-plugin-result-html",
    version=VERSION,
    description="Avocado HTML Report for Jobs",
    long_description=get_long_description(),
    long_description_content_type="text/x-rst",
    author="Avocado Developers",
    author_email="avocado-devel@redhat.com",
    url="http://avocado-framework.github.io/",
    packages=find_packages(),
    include_package_data=True,
    install_requires=[f"avocado-framework=={VERSION}", "jinja2"],
    entry_points={
        "avocado.plugins.cli": [
            "html = avocado_result_html:HTML",
        ],
        "avocado.plugins.init": [
            "html = avocado_result_html:HTMLInit",
        ],
        "avocado.plugins.result": [
            "html = avocado_result_html:HTMLResult",
        ],
    },
)