mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
49ec257e76
* Add attributes field to heartbeat for use in hb alerts * Whitespace fix for pre-commit hook to pass
25 lines
589 B
Python
25 lines
589 B
Python
from setuptools import find_packages, setup
|
|
|
|
version = '6.1.0'
|
|
|
|
setup(
|
|
name='alerta-gitlab',
|
|
version=version,
|
|
description='Example Alerta plugin for GitLab Issues',
|
|
url='https://github.com/alerta/alerta',
|
|
license='MIT',
|
|
author='Nick Satterly',
|
|
author_email='nick.satterly@gmail.com',
|
|
packages=find_packages(),
|
|
py_modules=['alerta_gitlab'],
|
|
install_requires=[
|
|
'requests'
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
entry_points={
|
|
'alerta.plugins': [
|
|
'gitlab = alerta_gitlab:GitlabIssue'
|
|
]
|
|
}
|
|
)
|