* Connector health: source hubspot, gitlab, snapchat-marketing: fix builds * fix builds * resolve dependencies conflict, bump version * tiktok: upd expected records * connector health: revert GA4 changes * auto-bump connector version * connector health: upd source definitions manually --------- Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
24 lines
632 B
Python
24 lines
632 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = ["airbyte-cdk", "vcrpy==4.1.1", "urllib3<2.0"]
|
|
|
|
TEST_REQUIREMENTS = ["pytest~=6.1", "connector-acceptance-test", "requests_mock"]
|
|
|
|
setup(
|
|
name="source_surveymonkey",
|
|
description="Source implementation for Surveymonkey.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|