-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (50 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
__author__ = 'RADICAL Team'
__email__ = '[email protected]'
__copyright__ = 'Copyright 2013-16, RADICAL Research, Rutgers University'
__license__ = 'MIT'
""" Setup script, only usable via pip. """
import os
import sys
name = 'saga-python'
try:
from setuptools import setup, Command, find_packages
except ImportError as e:
print("%s needs setuptools to install" % name)
sys.exit(1)
license = 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
setup_args = {
'name' : name,
'version' : '0.60.1',
'description' : 'This module provides backward compatibility for '
'radical.saga',
'author' : 'RADICAL Group at Rutgers University',
'author_email' : '[email protected]',
'maintainer' : 'The RADICAL Group',
'maintainer_email' : '[email protected]',
'url' : 'http://radical-cybertools.github.io/saga-python/',
'license' : license,
'keywords' : 'radical job saga',
'classifiers' : [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: Console',
license,
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix'
],
'packages' : find_packages('src'),
'package_dir' : {'': 'src'},
'install_requires' : ['radical.saga>=0.60'],
'zip_safe' : False,
}
# ------------------------------------------------------------------------------
#
setup(**setup_args)
os.system('rm -rf src/%s.egg-info' % name)
# ------------------------------------------------------------------------------