buildbot-transifex/setup.py

29 lines
791 B
Python
Raw Normal View History

#!/usr/bin/env python
from distutils.core import setup
2019-03-11 01:36:11 +01:00
VERSION = "0.1.0"
setup(name='buildbot-gitea',
2019-03-11 01:36:11 +01:00
version=VERSION,
description='buildbot plugin for integration with Gitea.',
author='Marvin Pohl',
2019-03-11 01:36:11 +01:00
author_email='hello@lab132.com',
url='https://github.com/lab132/buildbot-gitea',
packages=['buildbot_gitea'],
2019-03-11 01:36:11 +01:00
requires=[
"buildbot (>=2.0.0)"
2018-09-05 11:47:58 +02:00
],
entry_points={
2018-09-05 11:47:58 +02:00
"buildbot.webhooks": [
"gitea = buildbot_gitea.webhook:gitea"
2018-09-27 16:57:11 +02:00
],
"buildbot.steps": [
"Gitea = buildbot_gitea.step_source:Gitea"
2018-09-27 16:57:11 +02:00
],
"buildbot.reporters": [
"GiteaStatusPush = buildbot_gitea.reporter:GiteaStatusPush"
2018-09-05 11:47:58 +02:00
]
},
)