1
0
mirror of synced 2025-12-21 11:01:41 -05:00
Files
airbyte/airbyte-integrations/connectors/source-s3/pyproject.toml
octavia-bot-hoard[bot] c948c1b3a8 🐙 source-s3: run up-to-date pipeline [2025-11-11] (#69268)
Co-authored-by: octavia-bot-hoard[bot] <230633153+octavia-bot-hoard[bot]@users.noreply.github.com>
2025-11-10 23:10:49 -05:00

49 lines
1.2 KiB
TOML

[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "4.15.2"
name = "source-s3"
description = "Source implementation for S3."
authors = [ "Airbyte <contact@airbyte.io>",]
license = "ELv2"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/s3"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[[tool.poetry.packages]]
include = "source_s3"
[tool.poetry.dependencies]
python = "^3.10,<3.14"
pytz = "^2024.2"
wcmatch = "^10.0"
dill = "^0.3.4"
transformers = "^4.38.2"
urllib3 = "<2"
airbyte-cdk = {extras = ["file-based"], version = "^7.0.4"}
pendulum = "^3.0.0"
[tool.poetry.scripts]
source-s3 = "source_s3.run:run"
[tool.poetry.dependencies.smart-open]
extras = [ "s3",]
version = "^5.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
moto = "==4.2.14"
docker = "^7.0.0"
pytest-mock = "^3.6.1"
requests-mock = "^1.9.3"
pandas = "^2.0.3"
[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",
]