-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·24 lines (22 loc) · 989 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
import setuptools
from slack_notifier.version import Version
setuptools.setup(name='slack_notifier',
version=Version('1.0.0').number,
description='Supervisord Slack Notifier',
long_description=open('README.md').read().strip(),
author='Wojciech Iskra',
author_email='[email protected]',
url='https://github.com/Schibsted-Tech-Polska/supervisord-slack-notifier',
py_modules=['slack_notifier'],
install_requires=[
'supervisor',
'pyslack-real==0.5.3',
],
tests_require=[
'pytest==2.7.1',
'pytest-cov==1.8.1',
],
license='MIT License',
zip_safe=False,
keywords='supervisord slack listener notifications',
classifiers=['Slack', 'Supervisord'])