forked from ogrisel/clusterlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.36 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
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# Authors: Arnaud Joly
#
# License: BSD 3 clause
from distutils.core import setup
import clusterlib
NAME = 'clusterlib'
VERSION = clusterlib.__version__
AUTHOR = "Arnaud Joly"
AUTHOR_EMAIL = "[email protected]"
URL = 'http://clusterlib.github.io/clusterlib/'
DESCRIPTION = 'Tools to manage jobs on cluster'
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
]
if __name__ == '__main__':
setup(name='clusterlib',
version=clusterlib.__version__,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license='BSD',
classifiers=CLASSIFIERS,
platforms='any',
packages=['clusterlib', 'clusterlib.tests'])