File tree Expand file tree Collapse file tree 7 files changed +86
-2
lines changed Expand file tree Collapse file tree 7 files changed +86
-2
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " codeflare-sdk"
3- version = " 0.1.5 "
3+ version = " 0.1.6 "
44description = " Python SDK for codeflare client"
55
6- license = " GPL-3.0-only "
6+ license = " Apache-2.0 "
77
88authors = [
99 " Atin Sood <asood@us.ibm.com>" ,
Original file line number Diff line number Diff line change 1+ # Copyright 2022 IBM, Red Hat
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115from os import stat
216from typing import List , Optional , Tuple
317
Original file line number Diff line number Diff line change 1+ # Copyright 2022 IBM, Red Hat
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115from dataclasses import dataclass , field
216import pathlib
317
Original file line number Diff line number Diff line change 1+ # Copyright 2022 IBM, Red Hat
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115from dataclasses import dataclass
216from enum import Enum
317
Original file line number Diff line number Diff line change 1+ # Copyright 2022 IBM, Red Hat
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115import yaml
216import sys
317import argparse
Original file line number Diff line number Diff line change 1+ # Copyright 2022 IBM, Red Hat
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115from rich import print
216from rich .table import Table
317from rich .console import Console
Original file line number Diff line number Diff line change 1+ # Copyright 2022 IBM, Red Hat
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115from codeflare_sdk .cluster .cluster import list_all_clusters , list_all_queued , _app_wrapper_status
216from codeflare_sdk .cluster .cluster import Cluster , ClusterConfiguration
317
You can’t perform that action at this time.
0 commit comments