1
0
mirror of synced 2025-12-21 19:11:14 -05:00
Files
airbyte/airbyte-integrations/connectors/source-microsoft-sharepoint/pyproject.toml

43 lines
1.1 KiB
TOML

[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.10.4"
name = "source-microsoft-sharepoint"
description = "Source implementation for Microsoft SharePoint."
authors = [ "Airbyte <contact@airbyte.io>",]
license = "ELv2"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/microsoft-sharepoint"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[[tool.poetry.packages]]
include = "source_microsoft_sharepoint"
[tool.poetry.dependencies]
python = "^3.11,<3.12"
msal = "==1.27.0"
Office365-REST-Python-Client = "==2.5.5"
smart-open = "==6.4.0"
airbyte-cdk = {extras = ["file-based"], version = "^6"}
[tool.poetry.scripts]
source-microsoft-sharepoint = "source_microsoft_sharepoint.run:run"
[tool.poetry.group.dev.dependencies]
pytest-mock = "^3.6.1"
requests-mock = "^1.12.1"
pytest = "^8"
poethepoet = "^0.32.2"
[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",
]