forked from javiergp/mlops-with-vertex-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (37 loc) · 1.05 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
import setuptools
REQUIRED_PACKAGES_AS_IMG = [
"kfp==1.8.12",
"google-cloud-bigquery==2.34.3",
"google-cloud-bigquery-storage==2.13.2",
"google-cloud-aiplatform==1.14.0",
"google-cloud-pubsub",
"cloudml-hypertune==0.1.0.dev6",
"pytest==7.1.2",
#tensorflow==2.8.2
"tensorflow-data-validation==1.8.0",
"tensorflow-transform==1.8.0",
"tfx==1.8.0",
"tensorflow-io==0.26.0",
"apache-beam[gcp]==2.39.0"
]
REQUIRED_PACKAGES_UPDATED = [
"google-cloud-aiplatform==1.14.0",
"tensorflow-transform==1.8.0",
"tensorflow-data-validation==1.8.0",
"cloudml-hypertune==0.1.0.dev6",
"tfx-bsl==1.8.0"
]
REQUIRED_PACKAGES_ORI = [
"google-cloud-aiplatform==1.4.2",
"tensorflow-transform==1.2.0",
"tensorflow-data-validation==1.2.0",
"cloudml-hypertune==0.1.0.dev6"
]
setuptools.setup(
name="executor",
version="0.0.1",
install_requires=REQUIRED_PACKAGES_ORI,
packages=setuptools.find_packages(),
include_package_data=True,
package_data={"src": ["raw_schema/schema.pbtxt"]},
)