2018-09-04 12:40:36 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='buildbot-gitea',
|
|
|
|
version='0.0.1',
|
|
|
|
description='buildbot plugin for integration with Gitea.',
|
|
|
|
author='Marvin Pohl',
|
|
|
|
author_email='marvin@lab132.com',
|
|
|
|
url='https://lab132.com',
|
2018-09-05 14:14:31 +02:00
|
|
|
packages=['buildbot_gitea'],
|
2018-09-05 11:47:58 +02:00
|
|
|
install_requires=[
|
|
|
|
"buildbot"
|
|
|
|
],
|
2018-09-04 12:40:36 +02:00
|
|
|
entry_points={
|
2018-09-05 11:47:58 +02:00
|
|
|
"buildbot.webhooks": [
|
2018-09-05 14:14:31 +02:00
|
|
|
"gitea = buildbot_gitea.webhook:gitea"
|
2018-09-27 16:57:11 +02:00
|
|
|
],
|
|
|
|
"buildbot.steps": [
|
2018-09-27 19:36:13 +02:00
|
|
|
"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
|
|
|
]
|
2018-09-04 12:40:36 +02:00
|
|
|
},
|
|
|
|
)
|