* feat: source-gitlab accept api_url w/ or w/o scheme * 🪟🔧 Refactor ConnectorsView (#21531) * WIP * WIP * wip * more fixes * fix test * remove some more styled components and improve memoization * review comment * feat: source-gitlab accept api_url w/ or w/o scheme * Revert allowedHosts missing value checks (#21923) * bump versions * update expected records * auto-bump connector version --------- Co-authored-by: Joe Reuter <joe@airbyte.io> Co-authored-by: Evan Tahler <evan@airbyte.io> Co-authored-by: Mal Hancock <mallory@archangelic.space> Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com> Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
24 lines
620 B
Python
24 lines
620 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = ["airbyte-cdk", "vcrpy==4.1.1"]
|
|
|
|
TEST_REQUIREMENTS = ["pytest~=6.1", "connector-acceptance-test", "requests_mock", "pytest-mock"]
|
|
|
|
setup(
|
|
name="source_gitlab",
|
|
description="Source implementation for Gitlab.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={"": ["*.json", "schemas/*.json", "schemas/shared/*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|