forked from MeltanoLabs/tap-facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (47 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "meltano-tap-facebook"
version = "0.0.0"
description = "`tap-facebook` is a Singer tap for facebook, built with the Meltano SDK for Singer Taps."
authors = ["Meltano <[email protected]>"]
keywords = [
"ELT",
"facebook",
]
license = "Elastic-2.0"
packages = [
{ include = "tap_facebook" },
]
readme = "README.md"
[tool.poetry.dependencies]
python = "<3.12,>=3.7.1"
requests = "^2.31.0"
singer-sdk = ">=0.27,<0.29"
boto3 = "^1.28.54"
[tool.poetry.dev-dependencies]
pytest = "^7.4.1"
singer-sdk = {version = ">=0.27,<0.29", extras = ["testing"]}
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_facebook"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
tap-facebook = 'tap_facebook.tap:TapFacebook.cli'
[tool.poetry-dynamic-versioning]
enable = true
[tool.ruff]
ignore = ["ANN101", "DJ", "PD", "D101", "D102"]
line-length = 100
select = ["ALL"]
target-version = "py37"
[tool.ruff.flake8-import-conventions]
banned-from = ["typing"]
[tool.ruff.flake8-import-conventions.extend-aliases]
typing = "t"
[tool.ruff.per-file-ignores]
"tests/*" = ["ANN201", "D103", "S101", "PLR2004"]
[tool.ruff.pydocstyle]
convention = "google"