1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/airbyte-integrations/bases/base-python/setup.py
Sergei Solonitcyn 85accd7a40 Airbyte 8278 all in one static code checker to be run locally as well as during ci pipelines (#8873)
airbyte-8278 All-in-one static code checker to be run locally as well as during CI pipelines
2021-12-28 05:15:40 +02:00

30 lines
724 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
import setuptools
setuptools.setup(
name="base-python",
description="Contains machinery to make it easy to write an integration in python.",
author="Airbyte",
author_email="contact@airbyte.io",
url="https://github.com/airbytehq/airbyte",
packages=setuptools.find_packages(),
package_data={"": ["models/yaml/*.yaml"]},
install_requires=[
"airbyte-protocol",
"backoff",
"jsonschema==3.2.0",
"pendulum",
"pydantic==1.6.*",
"pytest",
"PyYAML==5.4",
"requests",
],
entry_points={
"console_scripts": ["base-python=base_python.entrypoint:main"],
},
)