24 lines
484 B
Python
24 lines
484 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
TEST_REQUIREMENTS = [
|
|
"pytest~=6.1",
|
|
]
|
|
|
|
setup(
|
|
name="source_slack",
|
|
description="Source implementation for Slack.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=["airbyte-cdk", "pendulum>=2,<3"],
|
|
package_data={"": ["*.json"]},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|