* update all connectors currently only adhering to patch versions to pull latest minor version * also add greenhouse * fix scaffolds
29 lines
591 B
Python
29 lines
591 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.2",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
"source-acceptance-test",
|
|
]
|
|
|
|
setup(
|
|
name="source_scaffold_source_python",
|
|
description="Source implementation for Scaffold Source Python.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "*.yaml"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|