1
0
mirror of synced 2025-12-25 02:09:19 -05:00

airbyte-lib: Refactor follow-up (#34649)

This commit is contained in:
Joe Reuter
2024-01-30 12:11:41 +01:00
committed by GitHub
parent f10763ab2a
commit 4cfaebeacf
95 changed files with 1235 additions and 95 deletions

View File

@@ -26,7 +26,19 @@ setup(
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=MAIN_REQUIREMENTS,
package_data={"": ["*.json", "schemas/*.json"]},
package_data={
"": [
# Include yaml files in the package (if any)
"*.yml",
"*.yaml",
# Include all json files in the package, up to 4 levels deep
"*.json",
"*/*.json",
"*/*/*.json",
"*/*/*/*.json",
"*/*/*/*/*.json",
]
},
extras_require={
"tests": TEST_REQUIREMENTS,
},