* Source FreshCaller: fix spec type check * Source FreshCaller: update docs * Source FreshCaller: fix schemas * Source FreshCaller: reformat * Source FreshCaller: bump version minor * Source FreshCaller: update metadata
31 lines
686 B
Python
31 lines
686 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.2",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
"pytest-mock~=3.6.1",
|
|
"requests-mock~=1.9.3",
|
|
"connector-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_freshcaller",
|
|
description="Source implementation for Freshcaller.",
|
|
author="Jay Bujala (Snapcommerce)",
|
|
author_email="jay.bujala@snapcommerce.com",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|