forked from MeltanoLabs/tap-google-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (34 loc) · 910 Bytes
/
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
[tool.poetry]
name = "tap-google-analytics"
version = "0.0.4"
description = "`tap-google-analytics` is a Singer tap for GoogleAnalytics, built with the Meltano SDK for Singer Taps."
authors = ["Pat Nadolny"]
keywords = [
"ELT",
"GoogleAnalytics",
]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "<3.10,>=3.6.2"
singer-sdk = "^0.4.2"
google-api-python-client = "^2.50.0"
oauth2client = "4.1.3"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
tox = "^3.25.0"
flake8 = "^4.0.1"
black = "^22.3"
pydocstyle = "^6.1.1"
mypy = "^0.961"
isort = "^5.10.1"
coverage = "^6.2"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_google_analytics"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-google-analytics = 'tap_google_analytics.tap:TapGoogleAnalytics.cli'