1
0
mirror of synced 2026-02-01 13:02:06 -05:00
Files
airbyte/airbyte-integrations/connector-templates/source-python/setup.py.hbs
Alexandre Girard 3db13e0e8d Update python template (#29370)
* Update python template

* Update source-python-http-api too

* Also update the low-code template
2023-08-11 10:53:03 -07:00

31 lines
642 B
Handlebars

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk~=0.2",
]
TEST_REQUIREMENTS = [
"requests-mock~=1.9.3",
"pytest-mock~=3.6.1",
"pytest~=6.2",
"connector-acceptance-test",
]
setup(
name="source_{{snakeCase name}}",
description="Source implementation for {{capitalCase name}}.",
author="Airbyte",
author_email="contact@airbyte.io",
packages=find_packages(),
install_requires=MAIN_REQUIREMENTS,
package_data={"": ["*.json", "*.yaml"]},
extras_require={
"tests": TEST_REQUIREMENTS,
},
)