File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This package is used internally to unit test the validity of all Cloud Composer
6
6
7
7
Add the following to your ` requirements-test.txt ` file:
8
8
9
- ` git+https://github.com/GoogleCloudPlatform/python-docs-samples.git#egg=dag_test_utils&subdirectory=composer/dag_test_utils `
9
+ ` cloud_composer_dag_test_utils `
10
10
11
11
Import the internal unit testing module
12
12
Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools" , " wheel" ]
3
+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 16
16
from setuptools import setup
17
17
18
18
setup (
19
- name = "dag_test_utils " ,
19
+ name = "cloud_composer_dag_test_utils " ,
20
20
version = "0.0.1" ,
21
- url = "git@ github.com: GoogleCloudPlatform/python-docs-samples.git#egg=dag_test_utils&subdirectory= composer/dag_test_utils" ,
22
- author = "Google Cloud Platform " ,
23
- description = "Utility used to unit test example Apache Airflow DAGs" ,
21
+ url = "https:// github.com/ GoogleCloudPlatform/python-docs-samples/tree/master/ composer/dag_test_utils" ,
22
+ author = "Google LLC " ,
23
+ description = "Utility used to unit test example Apache Airflow DAGs for Google Cloud Composer. This is not an officially supported Google product. " ,
24
24
packages = find_packages (),
25
25
py_modules = ['internal_unit_testing' ],
26
- install_requires = ['apache-airflow[gcp] ' ]
26
+ install_requires = ['apache-airflow[google]==1.10.15 ' ]
27
27
)
You can’t perform that action at this time.
0 commit comments