1
0
mirror of synced 2026-01-04 18:04:31 -05:00
Files
airbyte/airbyte-integrations/connectors/source-shopify/setup.py
2023-02-27 21:19:44 +02:00

29 lines
639 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = ["airbyte-cdk", "sgqlc~=16.0"]
TEST_REQUIREMENTS = [
"pytest",
"pytest-mock",
"requests-mock",
"connector-acceptance-test",
]
setup(
name="source_shopify",
description="Source CDK implementation for Shopify.",
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,
},
)