-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
29 lines (28 loc) · 904 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="luigi-monitor",
version="1.1.4",
description="Send summary messages of your Luigi jobs to Slack.",
long_description=open("README.md").read(),
url="https://github.com/hudl/luigi-monitor",
author="Hudl",
author_email="alex.debrie@hudl.com",
license="MIT",
packages=['luigi_monitor'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
keywords="luigi",
install_requires=["requests", "luigi"],
entry_points={
"console_scripts": ["luigi-monitor=luigi_monitor.luigi_monitor:run"]
}
)