1
0
mirror of synced 2025-12-30 03:02:21 -05:00

Update generator templates to use CDK. (#3316)

* Update singer template.
* Update source python.
* Update http python.
* Fix a bug where the template tests were not previously running.
This commit is contained in:
Davin Chia
2021-05-11 06:26:22 +08:00
committed by GitHub
parent 89b29236d1
commit 945e46b53e
66 changed files with 658 additions and 354 deletions

View File

@@ -23,12 +23,24 @@
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk",
]
TEST_REQUIREMENTS = [
"pytest~=6.1",
"source-acceptance-test",
]
setup(
name="source_scaffold_source_python",
description="Source implementation for Scaffold Source Python.",
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=["airbyte-protocol", "base-python", "pytest==6.1.2"],
install_requires=MAIN_REQUIREMENTS,
package_data={"": ["*.json"]},
extras_require={
"tests": TEST_REQUIREMENTS,
},
)