Skip to content

Commit cc1f1a2

Browse files
Joe Reuterjbfbell
Joe Reuter
authored andcommitted
airbyte-lib: Refactor follow-up (#34649)
1 parent b551732 commit cc1f1a2

File tree

95 files changed

+1235
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+1235
-95
lines changed

airbyte-integrations/connectors/source-airtable/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,19 @@
2727
author_email="[email protected]",
2828
packages=find_packages(),
2929
install_requires=MAIN_REQUIREMENTS,
30-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
30+
package_data={
31+
"": [
32+
# Include yaml files in the package (if any)
33+
"*.yml",
34+
"*.yaml",
35+
# Include all json files in the package, up to 4 levels deep
36+
"*.json",
37+
"*/*.json",
38+
"*/*/*.json",
39+
"*/*/*/*.json",
40+
"*/*/*/*/*.json",
41+
]
42+
},
3143
extras_require={
3244
"tests": TEST_REQUIREMENTS,
3345
},

airbyte-integrations/connectors/source-amazon-ads/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,19 @@
2828
author_email="[email protected]",
2929
packages=find_packages(),
3030
install_requires=MAIN_REQUIREMENTS,
31-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
31+
package_data={
32+
"": [
33+
# Include yaml files in the package (if any)
34+
"*.yml",
35+
"*.yaml",
36+
# Include all json files in the package, up to 4 levels deep
37+
"*.json",
38+
"*/*.json",
39+
"*/*/*.json",
40+
"*/*/*/*.json",
41+
"*/*/*/*/*.json",
42+
]
43+
},
3244
extras_require={
3345
"tests": TEST_REQUIREMENTS,
3446
},

airbyte-integrations/connectors/source-amazon-seller-partner/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@
2121
author_email="[email protected]",
2222
packages=find_packages(),
2323
install_requires=MAIN_REQUIREMENTS,
24-
package_data={"": ["*.json"]},
24+
package_data={
25+
"": [
26+
# Include yaml files in the package (if any)
27+
"*.yml",
28+
"*.yaml",
29+
# Include all json files in the package, up to 4 levels deep
30+
"*.json",
31+
"*/*.json",
32+
"*/*/*.json",
33+
"*/*/*/*.json",
34+
"*/*/*/*/*.json",
35+
]
36+
},
2537
extras_require={
2638
"tests": TEST_REQUIREMENTS,
2739
},

airbyte-integrations/connectors/source-amazon-sqs/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@
2121
author_email="[email protected]",
2222
packages=find_packages(),
2323
install_requires=MAIN_REQUIREMENTS,
24-
package_data={"": ["*.json"]},
24+
package_data={
25+
"": [
26+
# Include yaml files in the package (if any)
27+
"*.yml",
28+
"*.yaml",
29+
# Include all json files in the package, up to 4 levels deep
30+
"*.json",
31+
"*/*.json",
32+
"*/*/*.json",
33+
"*/*/*/*.json",
34+
"*/*/*/*/*.json",
35+
]
36+
},
2537
extras_require={
2638
"tests": TEST_REQUIREMENTS,
2739
},

airbyte-integrations/connectors/source-appsflyer/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525
author_email="[email protected]",
2626
packages=find_packages(),
2727
install_requires=MAIN_REQUIREMENTS,
28-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
28+
package_data={
29+
"": [
30+
# Include yaml files in the package (if any)
31+
"*.yml",
32+
"*.yaml",
33+
# Include all json files in the package, up to 4 levels deep
34+
"*.json",
35+
"*/*.json",
36+
"*/*/*.json",
37+
"*/*/*/*.json",
38+
"*/*/*/*/*.json",
39+
]
40+
},
2941
extras_require={
3042
"tests": TEST_REQUIREMENTS,
3143
},

airbyte-integrations/connectors/source-appstore-singer/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,19 @@
3030
author_email="[email protected]",
3131
packages=find_packages(),
3232
install_requires=MAIN_REQUIREMENTS,
33-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
33+
package_data={
34+
"": [
35+
# Include yaml files in the package (if any)
36+
"*.yml",
37+
"*.yaml",
38+
# Include all json files in the package, up to 4 levels deep
39+
"*.json",
40+
"*/*.json",
41+
"*/*/*.json",
42+
"*/*/*/*.json",
43+
"*/*/*/*/*.json",
44+
]
45+
},
3446
extras_require={
3547
"tests": TEST_REQUIREMENTS,
3648
},

airbyte-integrations/connectors/source-asana/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,19 @@
2323
author_email="[email protected]",
2424
packages=find_packages(),
2525
install_requires=MAIN_REQUIREMENTS,
26-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
26+
package_data={
27+
"": [
28+
# Include yaml files in the package (if any)
29+
"*.yml",
30+
"*.yaml",
31+
# Include all json files in the package, up to 4 levels deep
32+
"*.json",
33+
"*/*.json",
34+
"*/*/*.json",
35+
"*/*/*/*.json",
36+
"*/*/*/*/*.json",
37+
]
38+
},
2739
extras_require={
2840
"tests": TEST_REQUIREMENTS,
2941
},

airbyte-integrations/connectors/source-aws-cloudtrail/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525
author_email="[email protected]",
2626
packages=find_packages(),
2727
install_requires=MAIN_REQUIREMENTS,
28-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
28+
package_data={
29+
"": [
30+
# Include yaml files in the package (if any)
31+
"*.yml",
32+
"*.yaml",
33+
# Include all json files in the package, up to 4 levels deep
34+
"*.json",
35+
"*/*.json",
36+
"*/*/*.json",
37+
"*/*/*/*.json",
38+
"*/*/*/*/*.json",
39+
]
40+
},
2941
extras_require={
3042
"tests": TEST_REQUIREMENTS,
3143
},

airbyte-integrations/connectors/source-azure-blob-storage/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525
author_email="[email protected]",
2626
packages=find_packages(),
2727
install_requires=MAIN_REQUIREMENTS,
28-
package_data={"": ["*.json", "*.yaml"]},
28+
package_data={
29+
"": [
30+
# Include yaml files in the package (if any)
31+
"*.yml",
32+
"*.yaml",
33+
# Include all json files in the package, up to 4 levels deep
34+
"*.json",
35+
"*/*.json",
36+
"*/*/*.json",
37+
"*/*/*/*.json",
38+
"*/*/*/*/*.json",
39+
]
40+
},
2941
extras_require={
3042
"tests": TEST_REQUIREMENTS,
3143
},

airbyte-integrations/connectors/source-azure-table/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525
author_email="[email protected]",
2626
packages=find_packages(),
2727
install_requires=MAIN_REQUIREMENTS,
28-
package_data={"": ["*.json"]},
28+
package_data={
29+
"": [
30+
# Include yaml files in the package (if any)
31+
"*.yml",
32+
"*.yaml",
33+
# Include all json files in the package, up to 4 levels deep
34+
"*.json",
35+
"*/*.json",
36+
"*/*/*.json",
37+
"*/*/*/*.json",
38+
"*/*/*/*/*.json",
39+
]
40+
},
2941
extras_require={
3042
"tests": TEST_REQUIREMENTS,
3143
},

airbyte-integrations/connectors/source-bamboo-hr/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525
author_email="[email protected]",
2626
packages=find_packages(),
2727
install_requires=MAIN_REQUIREMENTS,
28-
package_data={"": ["*.json"]},
28+
package_data={
29+
"": [
30+
# Include yaml files in the package (if any)
31+
"*.yml",
32+
"*.yaml",
33+
# Include all json files in the package, up to 4 levels deep
34+
"*.json",
35+
"*/*.json",
36+
"*/*/*.json",
37+
"*/*/*/*.json",
38+
"*/*/*/*/*.json",
39+
]
40+
},
2941
extras_require={
3042
"tests": TEST_REQUIREMENTS,
3143
},

airbyte-integrations/connectors/source-bing-ads/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,19 @@
2626
author_email="[email protected]",
2727
packages=find_packages(),
2828
install_requires=MAIN_REQUIREMENTS,
29-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
29+
package_data={
30+
"": [
31+
# Include yaml files in the package (if any)
32+
"*.yml",
33+
"*.yaml",
34+
# Include all json files in the package, up to 4 levels deep
35+
"*.json",
36+
"*/*.json",
37+
"*/*/*.json",
38+
"*/*/*/*.json",
39+
"*/*/*/*/*.json",
40+
]
41+
},
3042
extras_require={
3143
"tests": TEST_REQUIREMENTS,
3244
},

airbyte-integrations/connectors/source-cart/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,19 @@
2727
author_email="[email protected]",
2828
packages=find_packages(),
2929
install_requires=MAIN_REQUIREMENTS,
30-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
30+
package_data={
31+
"": [
32+
# Include yaml files in the package (if any)
33+
"*.yml",
34+
"*.yaml",
35+
# Include all json files in the package, up to 4 levels deep
36+
"*.json",
37+
"*/*.json",
38+
"*/*/*.json",
39+
"*/*/*/*.json",
40+
"*/*/*/*/*.json",
41+
]
42+
},
3143
extras_require={
3244
"tests": TEST_REQUIREMENTS,
3345
},

airbyte-integrations/connectors/source-chartmogul/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,19 @@
2727
author_email="[email protected]",
2828
packages=find_packages(),
2929
install_requires=MAIN_REQUIREMENTS,
30-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
30+
package_data={
31+
"": [
32+
# Include yaml files in the package (if any)
33+
"*.yml",
34+
"*.yaml",
35+
# Include all json files in the package, up to 4 levels deep
36+
"*.json",
37+
"*/*.json",
38+
"*/*/*.json",
39+
"*/*/*/*.json",
40+
"*/*/*/*/*.json",
41+
]
42+
},
3143
extras_require={
3244
"tests": TEST_REQUIREMENTS,
3345
},

airbyte-integrations/connectors/source-close-com/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,19 @@
2525
author_email="[email protected]",
2626
packages=find_packages(),
2727
install_requires=MAIN_REQUIREMENTS,
28-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
28+
package_data={
29+
"": [
30+
# Include yaml files in the package (if any)
31+
"*.yml",
32+
"*.yaml",
33+
# Include all json files in the package, up to 4 levels deep
34+
"*.json",
35+
"*/*.json",
36+
"*/*/*.json",
37+
"*/*/*/*.json",
38+
"*/*/*/*/*.json",
39+
]
40+
},
2941
extras_require={
3042
"tests": TEST_REQUIREMENTS,
3143
},

airbyte-integrations/connectors/source-delighted/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,19 @@
2828
author_email="[email protected]",
2929
packages=find_packages(),
3030
install_requires=MAIN_REQUIREMENTS,
31-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
31+
package_data={
32+
"": [
33+
# Include yaml files in the package (if any)
34+
"*.yml",
35+
"*.yaml",
36+
# Include all json files in the package, up to 4 levels deep
37+
"*.json",
38+
"*/*.json",
39+
"*/*/*.json",
40+
"*/*/*/*.json",
41+
"*/*/*/*/*.json",
42+
]
43+
},
3244
extras_require={
3345
"tests": TEST_REQUIREMENTS,
3446
},

airbyte-integrations/connectors/source-dv-360/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@
2121
author_email="[email protected]",
2222
packages=find_packages(),
2323
install_requires=MAIN_REQUIREMENTS,
24-
package_data={"": ["*.json"]},
24+
package_data={
25+
"": [
26+
# Include yaml files in the package (if any)
27+
"*.yml",
28+
"*.yaml",
29+
# Include all json files in the package, up to 4 levels deep
30+
"*.json",
31+
"*/*.json",
32+
"*/*/*.json",
33+
"*/*/*/*.json",
34+
"*/*/*/*/*.json",
35+
]
36+
},
2537
extras_require={
2638
"tests": TEST_REQUIREMENTS,
2739
},

airbyte-integrations/connectors/source-facebook-marketing/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,19 @@
2121
author_email="[email protected]",
2222
packages=find_packages(),
2323
install_requires=MAIN_REQUIREMENTS,
24-
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
24+
package_data={
25+
"": [
26+
# Include yaml files in the package (if any)
27+
"*.yml",
28+
"*.yaml",
29+
# Include all json files in the package, up to 4 levels deep
30+
"*.json",
31+
"*/*.json",
32+
"*/*/*.json",
33+
"*/*/*/*.json",
34+
"*/*/*/*/*.json",
35+
]
36+
},
2537
extras_require={
2638
"tests": TEST_REQUIREMENTS,
2739
},

airbyte-integrations/connectors/source-faker/setup.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,19 @@
2020
author_email="[email protected]",
2121
packages=find_packages(),
2222
install_requires=MAIN_REQUIREMENTS,
23-
package_data={"": ["*.json", "schemas/*.json", "record_data/*.json"]},
23+
package_data={
24+
"": [
25+
# Include yaml files in the package (if any)
26+
"*.yml",
27+
"*.yaml",
28+
# Include all json files in the package, up to 4 levels deep
29+
"*.json",
30+
"*/*.json",
31+
"*/*/*.json",
32+
"*/*/*/*.json",
33+
"*/*/*/*/*.json",
34+
]
35+
},
2436
extras_require={
2537
"tests": TEST_REQUIREMENTS,
2638
},

0 commit comments

Comments
 (0)