-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "r") as rm:
long_description = rm.read()
VERSION = "0.0.5"
setup(name='buildbot-matrix',
version=VERSION,
description='buildbot plugin for using matrix for notifications',
author='HayWo',
author_email='[email protected]',
url='https://github.com/HayWo/buildbot-matrix',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['buildbot_matrix'],
requires=[
"buildbot (>=2.0.0)"
],
entry_points={
"buildbot.reporters": [
"MatrixStatusPush = buildbot_matrix.reporter:MatrixStatusPush"
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"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"
],
python_requires='>=3.6',
)