1
0
mirror of synced 2025-12-29 09:03:46 -05:00
Files
airbyte/airbyte-integrations/connectors/source-auth0/setup.py
Sajarin db7a93ea16 🐛Source Auth0 - Fix low code migration bugs (#29804)
Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Co-authored-by: sajarin <sajarin@users.noreply.github.com>
2023-09-27 16:47:21 -04:00

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,
},
)