Co-authored-by: octavia-bot-hoard[bot] <230633153+octavia-bot-hoard[bot]@users.noreply.github.com>
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
version = "0.6.53"
|
|
name = "source-iterable"
|
|
description = "Source implementation for Iterable."
|
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
|
license = "ELv2"
|
|
readme = "README.md"
|
|
documentation = "https://docs.airbyte.com/integrations/sources/iterable"
|
|
homepage = "https://airbyte.com"
|
|
repository = "https://github.com/airbytehq/airbyte"
|
|
[[tool.poetry.packages]]
|
|
include = "source_iterable"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9,<3.12"
|
|
pendulum = "==2.1.2"
|
|
airbyte-cdk = "^3"
|
|
python-dateutil = "==2.8.2"
|
|
|
|
[tool.poetry.scripts]
|
|
source-iterable = "source_iterable.run:run"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.0.0"
|
|
pytest-memray = "^1.6.0"
|
|
pytest-mock = "^3.6.1"
|
|
freezegun = "==1.5.1"
|
|
requests-mock = "^1.9.3"
|
|
responses = "==0.23.1"
|
|
|
|
|
|
[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",
|
|
]
|