forked from SMART-Lab/smartdispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (19 loc) · 821 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='smart-dispatch',
version='2.0.1',
author='Stanislas Lauly, Marc-Alexandre Côté, Mathieu Germain',
author_email='[email protected]',
packages=['smartdispatch',
'smartdispatch/workers'],
entry_points={
'console_scripts': ['smart-dispatch = smartdispatch.smartdispatch_script:main',
'sd-launch-pbs = smartdispatch.sd_launch_pbs_script:main']},
url='https://github.com/SMART-Lab/smartdispatch',
license='LICENSE.txt',
description='An easy to use job launcher for supercomputers with PBS compatible job manager.',
long_description=open('README.md').read(),
install_requires=['psutil>=1'],
package_data={'smartdispatch': ['config/*.json']}
)