optional_plugins/mail/setup.py
#!/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. 2024
# Author: Harvey Lynden <hlynden@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-mail",
version=VERSION,
description="Avocado Mail Notification 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}"],
entry_points={
"avocado.plugins.init": [
"notification = avocado_result_mail.result_mail:MailInit",
],
"avocado.plugins.job.prepost": [
"notification = avocado_result_mail.result_mail:Mail",
],
},
)