2018-09-04 12:40:36 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2019-09-20 18:59:06 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
2018-09-04 12:40:36 +02:00
|
|
|
|
2019-10-17 11:19:44 +02:00
|
|
|
VERSION = "1.1.0"
|
2019-03-11 01:36:11 +01:00
|
|
|
|
2018-09-04 12:40:36 +02:00
|
|
|
setup(name='buildbot-gitea',
|
2019-03-11 01:36:11 +01:00
|
|
|
version=VERSION,
|
2018-09-04 12:40:36 +02:00
|
|
|
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',
|
2019-09-20 18:59:06 +02:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
2018-09-05 14:14:31 +02:00
|
|
|
packages=['buildbot_gitea'],
|
2019-03-11 01:36:11 +01:00
|
|
|
requires=[
|
|
|
|
"buildbot (>=2.0.0)"
|
2018-09-05 11:47:58 +02:00
|
|
|
],
|
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"
|
2019-12-20 10:44:35 +01:00
|
|
|
],
|
2019-12-20 11:16:32 +01:00
|
|
|
"buildbot.util": [
|
2019-12-20 10:44:35 +01:00
|
|
|
"GiteaAuth = buildbot_gitea.auth:GiteaAuth"
|
2018-09-05 11:47:58 +02:00
|
|
|
]
|
2018-09-04 12:40:36 +02:00
|
|
|
},
|
2019-09-20 18:59:06 +02:00
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Plugins",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
]
|
2018-09-04 12:40:36 +02:00
|
|
|
)
|