1
0
mirror of synced 2026-02-03 10:02:09 -05:00
Files
airbyte/airbyte-integrations/connectors/source-railz/setup.py
Allexik 645558b74a 🎉 New Source: Railz (#20960)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
2023-02-23 22:34:37 +02:00

33 lines
690 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk~=0.1",
"isodate~=0.6.1",
"requests~=2.28",
]
TEST_REQUIREMENTS = [
"pytest~=6.2",
"pytest-mock~=3.6.1",
"connector-acceptance-test",
"freezegun",
]
setup(
name="source_railz",
description="Source implementation for Railz.",
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=MAIN_REQUIREMENTS,
package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]},
extras_require={
"tests": TEST_REQUIREMENTS,
},
)