41 lines
1.0 KiB
Python
41 lines
1.0 KiB
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
MAIN_REQUIREMENTS = ["airbyte-cdk", "xmltodict~=0.12", "dateparser==1.2.0"]
|
|
|
|
TEST_REQUIREMENTS = ["requests-mock~=1.9.3", "pytest~=6.1", "pytest-mock"]
|
|
|
|
setup(
|
|
entry_points={
|
|
"console_scripts": [
|
|
"source-amazon-seller-partner=source_amazon_seller_partner.run:run",
|
|
],
|
|
},
|
|
name="source_amazon_seller_partner",
|
|
description="Source implementation for Amazon Seller Partner.",
|
|
author="Airbyte",
|
|
author_email="contact@airbyte.io",
|
|
packages=find_packages(),
|
|
install_requires=MAIN_REQUIREMENTS,
|
|
package_data={
|
|
"": [
|
|
# Include yaml files in the package (if any)
|
|
"*.yml",
|
|
"*.yaml",
|
|
# Include all json files in the package, up to 4 levels deep
|
|
"*.json",
|
|
"*/*.json",
|
|
"*/*/*.json",
|
|
"*/*/*/*.json",
|
|
"*/*/*/*/*.json",
|
|
]
|
|
},
|
|
extras_require={
|
|
"tests": TEST_REQUIREMENTS,
|
|
},
|
|
)
|