1
0
mirror of synced 2025-12-20 10:32:35 -05:00
Files
airbyte/airbyte-integrations/connectors/source-python-http-tutorial/setup.py
Yevhenii 776ca69961 🎉 Source Python HTTP Tutorial: Migrate to CDK, remove deprecated dependencies (#8433)
* Migrate Python HTTP Tutorial to CDK, update required in spec.json
2021-12-03 15:29:44 +02:00

16 lines
404 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
setup(
name="source_python_http_tutorial",
description="Source implementation for Python Http Tutorial.",
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=["airbyte-cdk", "pytest==6.1.2"],
package_data={"": ["*.json"]},
)