34 lines
774 B
Python
34 lines
774 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.1",
|
|
"google-api-python-client==1.12.8",
|
|
"google-auth-httplib2==0.0.4",
|
|
"google-auth-oauthlib==0.4.2",
|
|
"backoff==1.10.0",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
"pytest-mock~=3.6.1",
|
|
"connector-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_google_directory",
|
|
description="Source implementation for Google Directory.",
|
|
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,
|
|
},
|
|
)
|