* add boilerplate * configure schemas * add connector doc * update airbyte docs * edit spec * configure incremental sync * use custom components * add incremental acceptances tests * add partnerstack to source def * auto-bump connector version Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
30 lines
652 B
Python
30 lines
652 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.1",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
"pytest-mock~=3.6.1",
|
|
"source-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_partnerstack",
|
|
description="Source implementation for Partnerstack.",
|
|
author="Elliot Trabac",
|
|
author_email="elliot.trabac1@gmail.com",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|