1
0
mirror of synced 2026-01-07 00:05:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-freshcaller/setup.py
Artem Inzhyyants cf5cdd4eb9 Source FreshCaller: fix spec type check (#26065)
* 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
2023-05-17 00:32:29 +02:00

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,
},
)