* Update interface based on new Cursor interface * Update version and changelogs * Update unit tests * Fix cursor assignation * Update update_state to close_slice * Update considering fix * Update CDK version to fix bug
25 lines
563 B
Python
25 lines
563 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = ["airbyte-cdk>=0.44.1"]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
"connector-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_posthog",
|
|
description="Source implementation for Posthog.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "*.yaml", "schemas/*.json"]},
|
|
extras_require={"tests": TEST_REQUIREMENTS},
|
|
)
|