1
0
mirror of synced 2025-12-21 11:01:41 -05:00
Files
airbyte/airbyte-integrations/bases/base-normalization/setup.py

29 lines
1.0 KiB
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
# Note: cattrs is pinned to the last known working version which does not have conflicts with typing_extensions. Learn more https://airbytehq-team.slack.com/archives/C03C4AVJWG4/p1685546430990049
import setuptools
setuptools.setup(
name="normalization",
description="Normalizes data in the destination.",
author="Airbyte",
author_email="contact@airbyte.io",
url="https://github.com/airbytehq/airbyte",
packages=setuptools.find_packages(),
install_requires=["airbyte-cdk", "pyyaml", "jinja2", "types-PyYAML", "cattrs==22.2.0"],
package_data={"": ["*.yml"]},
setup_requires=["pytest-runner"],
entry_points={
"console_scripts": [
"transform-config=normalization.transform_config.transform:main",
"transform-catalog=normalization.transform_catalog.transform:main",
],
},
extras_require={
"tests": ["airbyte-cdk", "pyyaml", "pytest", "mypy", "types-PyYAML"],
},
)