Added buildbot entry points

This commit is contained in:
Marvin Pohl 2018-09-27 16:57:11 +02:00
parent c5fba6c44a
commit 27a2d278b8
1 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,12 @@ setup(name='buildbot-gitea',
entry_points={ entry_points={
"buildbot.webhooks": [ "buildbot.webhooks": [
"gitea = buildbot_gitea.webhook:gitea" "gitea = buildbot_gitea.webhook:gitea"
],
"buildbot.steps": [
"gitea = buildbot_gitea.step_source:Gitea"
],
"buildbot.reporters": [
"GiteaStatusPush = buildbot_gitea.reporter:GiteaStatusPush"
] ]
}, },
) )