# # Copyright (c) 2023 Airbyte, Inc., all rights reserved. # from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ "airbyte-cdk", ] TEST_REQUIREMENTS = ["pytest~=6.2"] setup( name="destination_scaffold_destination_python", description="Destination implementation for Scaffold Destination Python.", author="Airbyte", author_email="contact@airbyte.io", packages=find_packages(), install_requires=MAIN_REQUIREMENTS, package_data={"": ["*.json"]}, extras_require={ "tests": TEST_REQUIREMENTS, }, )