forked from chaselgrove/sjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 1.02 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
#!/usr/bin/python
# See file COPYING distributed with sjs for copyright and license.
from distutils.core import setup
long_description = open('README.rst').read()
setup(name='sjs',
version='0.1.2',
description='A simple job scheduler',
author='Christian Haselgrove',
author_email='christian.haselgrove@umassmed.edu',
url='https://github.com/chaselgrove/sjs',
packages=['sjs'],
scripts=['sjs_qconf',
'sjs_qdel',
'sjs_qrun',
'sjs_qstat',
'sjs_qsub'],
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing'],
license='BSD license',
long_description=long_description
)
# eof