* 🎉 New Source: Pendo [Configuration Based Source] - add 4 full import streams to bootstrap the new source connector - add documentation - add svg - generate uuid and add a record in source_definitions.yaml - issue: https://github.com/airbytehq/airbyte/issues/2977 * address feedback: 1) correct schema; 2) add invalid_config and sample_config * correct the sample_config.json * auto-bump connector version --------- Co-authored-by: Yiyang Li <yiyangli2010@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
30 lines
629 B
Python
30 lines
629 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.1",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.2",
|
|
"pytest-mock~=3.6.1",
|
|
"connector-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_pendo",
|
|
description="Source implementation for Pendo.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|