forked from bonzanini/luigi-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (47 loc) · 1.37 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import subprocess
import sys
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)
long_description = ''
install_requires = [
'luigi>=1.3',
'slackclient>=1.0,<1.1'
]
tests_require = [
'pytest'
]
setup(
name='luigi-slack',
version='0.1.7',
description='Send Slack notifications to report on Luigi pipelines',
long_description=long_description,
author='Marco Bonzanini',
author_email='[email protected]',
url='https://github.com/bonzanini',
license='MIT',
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
cmdclass = {'test': PyTest},
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Monitoring',
],
)