-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.08 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.4.10"
name = "source-google-analytics-v4"
description = "Source implementation for Google Analytics V4."
authors = [ "Airbyte <contact@airbyte.io>",]
license = "Elv2"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/google-analytics-v4"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[[tool.poetry.packages]]
include = "source_google_analytics_v4"
[tool.poetry.dependencies]
python = "^3.9,<3.12"
airbyte-cdk = "^0"
PyJWT = "==2.8.0"
requests = "==2.31.0"
cryptography = "==41.0.4"
[tool.poetry.scripts]
source-google-analytics-v4 = "source_google_analytics_v4.run:run"
[tool.poetry.group.dev.dependencies]
pytest = "^6.1"
requests-mock = "^1.11.0"
pytest-mock = "^3.12.0"
freezegun = "^1.4.0"
[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",
]