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-05 11:47:58 +02:00
|
|
|
]
|
2018-09-04 12:40:36 +02:00
|
|
|
},
|
|
|
|
)
|