airbyte-8278 All-in-one static code checker to be run locally as well as during CI pipelines
30 lines
724 B
Python
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"],
|
|
},
|
|
)
|