30 lines
631 B
Python
30 lines
631 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk==0.29.0",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest",
|
|
"pytest-mock",
|
|
"connector-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_intercom",
|
|
description="Source implementation for Intercom Yaml.",
|
|
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,
|
|
},
|
|
)
|