1
0
mirror of synced 2026-01-02 21:02:43 -05:00
Files
airbyte/airbyte-integrations/bases/base-normalization/setup.py
Alexandre Girard 3894134d11 Bump year in license short to 2022 (#13191)
* Bump to 2022

* format
2022-05-25 17:56:49 -07:00

28 lines
799 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
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"],
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", "pytest", "mypy", "types-PyYAML"],
},
)