1
0
mirror of synced 2025-12-29 09:03:46 -05:00
Files
airbyte/airbyte-integrations/connectors/source-stripe/pyproject.toml

32 lines
788 B
TOML

[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "5.5.0"
name = "source-stripe"
description = "Source implementation for Stripe."
authors = [ "Airbyte <contact@airbyte.io>",]
license = "Elv2"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/stripe"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[[tool.poetry.packages]]
include = "source_stripe"
[tool.poetry.dependencies]
python = "^3.10,<3.12"
stripe = "==2.56.0"
pendulum = "==2.1.2"
airbyte-cdk = "^4"
[tool.poetry.scripts]
source-stripe = "source_stripe.run:run"
[tool.poetry.group.dev.dependencies]
requests-mock = "^1.11.0"
pytest = "^6.1"
freezegun = "==1.2.2"
pytest-mock = "^3.6.1"