forked from alphagov/icinga_slack_webhook
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·42 lines (32 loc) · 980 Bytes
/
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
40
41
42
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from icinga_slack import __version__
repo_directory = os.path.dirname(__file__)
try:
long_description = open(os.path.join(repo_directory, 'README.rst')).read()
except:
long_description = None
setup(
name='icinga-slack-webhook',
version=__version__,
packages=find_packages(exclude=['test*']),
author='Sam Sharpe',
author_email='[email protected]',
maintainer='Sam Sharpe',
url='https://github.com/samjsharpe/icinga_slack_webhook',
description='icinga-slack-webhook: A notifier from Icinga to Slack',
long_description=long_description,
license='MIT',
keywords='',
setup_requires=['setuptools-pep8'],
tests_require=[
"nose==1.3.3"
],
test_suite='nose.collector',
entry_points={
'console_scripts': [
'icinga_slack_webhook_notify=icinga_slack.webhook:main'
]
}
)