Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: sajarin <sajarin@users.noreply.github.com>
29 lines
596 B
Python
29 lines
596 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = [
|
|
"airbyte-cdk~=0.1",
|
|
]
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.2",
|
|
"pytest-mock~=3.6.1",
|
|
]
|
|
|
|
setup(
|
|
name="source_auth0",
|
|
description="Source implementation for Auth0.",
|
|
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,
|
|
},
|
|
)
|