forked from zplizzi/buildbot-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.09 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
from setuptools import setup
import buildbot_slack
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="buildbot-slack",
version=buildbot_slack.__version__,
description="buildbot plugin for integration with Slack.",
author="Norman Denayer",
author_email="denayer.norman@gmail.com",
url="https://github.com/rockwelln/buildbot-slack",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["buildbot_slack"],
install_requires=["buildbot (>=2.0.0)", "treq (>=18.6)"],
entry_points={
"buildbot.reporters": [
"SlackStatusPush = buildbot_slack.reporter:SlackStatusPush"
]
},
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",
],
)