34 lines
948 B
TOML
34 lines
948 B
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
version = "2.6.1"
|
|
name = "source-google-analytics-data-api"
|
|
description = "Source implementation for Google Analytics Data Api."
|
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
|
license = "Elv2"
|
|
readme = "README.md"
|
|
documentation = "https://docs.airbyte.com/integrations/sources/google-analytics-data-api"
|
|
homepage = "https://airbyte.com"
|
|
repository = "https://github.com/airbytehq/airbyte"
|
|
[[tool.poetry.packages]]
|
|
include = "source_google_analytics_data_api"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10,<3.12"
|
|
cryptography = "==42.0.5"
|
|
requests = "==2.31.0"
|
|
airbyte-cdk = "^5.0.0"
|
|
PyJWT = "==2.8.0"
|
|
pandas = "^2.2.0"
|
|
|
|
[tool.poetry.scripts]
|
|
source-google-analytics-data-api = "source_google_analytics_data_api.run:run"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^6.1"
|
|
requests-mock = "^1.11.0"
|
|
freezegun = "^1.4.0"
|
|
pytest-mock = "^3.6.1"
|