-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 1.24 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
#!/usr/bin/env python
"""Create setup script for pip installation of TaskManager"""
########################################################################
# File: setup.py
# executable: setup.py
#
# Author: Andrew Bailey
# History: 03/29/19 Created
########################################################################
from setuptools import setup, find_packages
def main():
setup(
name="taskManager",
version="0.2.2",
description='Task manager to keep track of compute resources and send email update when command exits',
url='https://github.com/rlorigro/TaskManager',
author='Ryan Lorig-Roach, Andrew Bailey',
license='MIT',
setup_requires=["pytest-runner"],
tests_require=["pytest"],
author_email='rlorigro@ucsc.edu, andbaile@ucsc.com',
packages=find_packages(),
scripts=['bin/taskManager', 'bin/monitor_resource_monitor.py', 'bin/plot_resource_usage.py',
'bin/resource_monitor.py'],
install_requires=['psutil>=5.6.1',
'boto3>=1.9',
'pytest>=4.3.1',
'matplotlib>=2.0.2'],
zip_safe=True
)
if __name__ == "__main__":
main()
raise SystemExit