1
0
mirror of synced 2026-01-20 12:07:14 -05:00
Files
airbyte/airbyte-integrations/connectors/source-sendgrid/setup.py
Marcos Marx dca2256a7c Bump 2022 license version (#13233)
* Bump year in license short to 2022

* remove protocol from cdk
2022-05-26 15:00:42 -03:00

17 lines
442 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
setup(
name="source_sendgrid",
description="Source implementation for Sendgrid.",
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=["airbyte-cdk~=0.1", "backoff", "requests", "pytest==6.1.2", "pytest-mock"],
package_data={"": ["*.json", "schemas/*.json"]},
)