Co-authored-by: octavia-bot-hoard[bot] <230633153+octavia-bot-hoard[bot]@users.noreply.github.com>
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
version = "3.0.13"
|
|
name = "source-shopify"
|
|
description = "Source CDK implementation for Shopify."
|
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
|
license = "ELv2"
|
|
readme = "README.md"
|
|
documentation = "https://docs.airbyte.com/integrations/sources/shopify"
|
|
homepage = "https://airbyte.com"
|
|
repository = "https://github.com/airbytehq/airbyte"
|
|
[[tool.poetry.packages]]
|
|
include = "source_shopify"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10,<3.12"
|
|
airbyte-cdk = "^6"
|
|
sgqlc = "==16.3"
|
|
graphql-query = "^1"
|
|
pendulum = "^2.1.2"
|
|
|
|
[tool.poetry.scripts]
|
|
source-shopify = "source_shopify.run:run"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
requests-mock = "^1.11.0"
|
|
pytest-mock = "^3.12.0"
|
|
pytest = "^8.0.0"
|
|
freezegun = "^1.4.0"
|
|
|
|
[tool.poe]
|
|
include = [
|
|
# Shared tasks definition file(s) can be imported here.
|
|
# Run `poe` or `poe --help` to see the list of available tasks.
|
|
"${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml",
|
|
]
|