-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 839 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
from setuptools import setup
setup(
name='jobmon',
packages=['jobmon'],
entry_points = {
'console_scripts':
['jobmon = jobmon.runner:main']
},
author='Adam Marchetti',
version='0.7',
description='Job monitoring system',
author_email='[email protected]',
url='http://github.com/adamnew123456/jobmon',
keywords=['job', 'monitor'],
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Topic :: System :: Monitoring'
],
long_description = """
JobMon monitors your jobs, allowing you to start, stop and query them, as
well as receive notifications when they launch or die.
""")