-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·47 lines (43 loc) · 1.37 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
from setuptools import setup, find_packages
with open('libsubmit/version.py') as f:
exec(f.read())
install_requires = [
'paramiko'
]
tests_require = [
'paramiko',
'mock>=1.0.0',
'nose',
'pytest'
]
setup(
name='libsubmit',
version=VERSION,
description='Uniform interface to clouds, clusters, grids and supercomputers.',
long_description='Submit, track and cancel arbitrary bash scripts on computate resources',
url='https://github.com/Parsl/libsubmit',
author='Yadu Nand Babuji',
author_email='[email protected]',
license='Apache 2.0',
download_url = 'https://github.com/Parsl/libsubmit/archive/master.zip',
package_data={'': ['LICENSE']},
packages=find_packages(),
install_requires=install_requires,
extras_require = {
'aws' : ['boto3'],
'azure' : ['azure-mgmt>=2.0.0', 'haikunator'],
'jetstream' : ['python-novaclient']
},
classifiers = [
# Maturity
'Development Status :: 3 - Alpha',
# Intended audience
'Intended Audience :: Developers',
# Licence, must match with licence above
'License :: OSI Approved :: Apache Software License',
# Python versions supported
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords = ['Workflows', 'Scientific computing'],
)