File tree Expand file tree Collapse file tree 3 files changed +33
-5
lines changed Expand file tree Collapse file tree 3 files changed +33
-5
lines changed Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
#
17
17
18
- from google .cloud .aiplatform import gapic
19
- from google .cloud .aiplatform import explain
18
+
19
+ from google .cloud .aiplatform import version as aiplatform_version
20
+
21
+ __version__ = aiplatform_version .__version__
22
+
20
23
21
24
from google .cloud .aiplatform import initializer
25
+
22
26
from google .cloud .aiplatform .datasets import (
23
27
ImageDataset ,
24
28
TabularDataset ,
25
29
TextDataset ,
26
30
TimeSeriesDataset ,
27
31
VideoDataset ,
28
32
)
33
+ from google .cloud .aiplatform import explain
34
+ from google .cloud .aiplatform import gapic
29
35
from google .cloud .aiplatform import hyperparameter_tuning
30
36
from google .cloud .aiplatform .metadata import metadata
31
37
from google .cloud .aiplatform .models import Endpoint
32
38
from google .cloud .aiplatform .models import Model
33
- from google .cloud .aiplatform .pipeline_jobs import PipelineJob
34
39
from google .cloud .aiplatform .jobs import (
35
40
BatchPredictionJob ,
36
41
CustomJob ,
37
42
HyperparameterTuningJob ,
38
43
)
44
+ from google .cloud .aiplatform .pipeline_jobs import PipelineJob
39
45
from google .cloud .aiplatform .tensorboard import Tensorboard
40
46
from google .cloud .aiplatform .training_jobs import (
41
47
CustomTrainingJob ,
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ # Copyright 2021 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ #
17
+
18
+ __version__ = "1.6.1"
Original file line number Diff line number Diff line change 21
21
import setuptools # type: ignore
22
22
23
23
name = "google-cloud-aiplatform"
24
- version = "1.6.1"
25
- description = "Cloud AI Platform API client library"
24
+ description = "Vertex AI API client library"
26
25
27
26
package_root = os .path .abspath (os .path .dirname (__file__ ))
28
27
readme_filename = os .path .join (package_root , "README.rst" )
29
28
with io .open (readme_filename , encoding = "utf-8" ) as readme_file :
30
29
readme = readme_file .read ()
31
30
31
+ version = {}
32
+ with open (os .path .join (package_root , "google/cloud/aiplatform/version.py" )) as fp :
33
+ exec (fp .read (), version )
34
+ version = version ["__version__" ]
35
+
32
36
tensorboard_extra_require = ["tensorflow >=2.3.0, <=2.5.0" ]
33
37
metadata_extra_require = ["pandas >= 1.0.0" ]
34
38
xai_extra_require = ["tensorflow >=2.3.0, <=2.5.0" ]
You can’t perform that action at this time.
0 commit comments