1
0
mirror of synced 2026-01-08 21:05:13 -05:00
Files
airbyte/airbyte-integrations/connectors/source-retently/setup.py
Marcos Marx 9c259f0a3c Source Retently: correct schemas and make integration test work again (#25900)
* remove duplicate streams

* fix integration test for retently

* remove unrelated change to cdk

* remove logs

* bump connector version

* update doc

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-05-09 14:04:05 -03:00

31 lines
644 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk",
]
TEST_REQUIREMENTS = [
"pytest~=6.1",
"pytest-mock~=3.6.1",
"connector-acceptance-test",
"responses~=0.13.3",
]
setup(
name="source_retently",
description="Source implementation for Retently",
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,
},
)