-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
65 lines (53 loc) · 2.14 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
65
"""
Copyright (c) 2019 Atos Spain SA. All rights reserved.
This file is part of Croupier.
Croupier is free software: you can redistribute it and/or modify it
under the terms of the Apache License, Version 2.0 (the License) License.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT, IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
See README file for full disclaimer information and LICENSE file for full
license information in the project root.
@author: Javier Carnero
Atos Research & Innovation, Atos Spain S.A.
e-mail: [email protected]
setup.py
"""
import os
from setuptools import setup
# Replace the place holders with values for your project
setup(
# Do not use underscores in the plugin name.
name='croupier',
version='3.3.0',
author='Jesus Gorronogoitia',
author_email='[email protected]',
description='Plugin to use HPC resources in Cloudify',
# This must correspond to the actual packages in the plugin.
packages=['croupier_plugin',
'croupier_plugin.infrastructure_interfaces',
'croupier_plugin.accounting_client',
'croupier_plugin.accounting_client.model',
'croupier_plugin.data_mover',
'croupier_plugin.vault',
'croupier_plugin.data_management'
],
package_data={'croupier_plugin.infrastructure_interfaces': ['*.sh'],
'croupier_plugin': ['*.cfg'], 'croupier_plugin.data_management': ['*.sh']},
include_package_data=True,
zip_safe=False,
install_requires=[
# Necessary dependency for developing plugins, do not remove!
"cloudify-common==6.2.0",
"paramiko==2.7.2",
"pyyaml>=5.4",
"wget",
"future==0.18.2",
"ckanapi"
],
license='Apache APLv2.0'
)