-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (45 loc) · 1.23 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
[tool.poetry]
name = "tap-kustomer"
version = "0.0.1"
description = "`tap-kustomer` is a Singer tap for kustomer, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["Brooklyn Data"]
keywords = [
"ELT",
"kustomer",
]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "<3.12,>=3.7.1"
fs-s3fs = { version = "^1.1.1", optional = true }
requests = "^2.31.0"
singer-sdk = { version="^0.27.0" }
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
singer-sdk = { version="^0.27.0", extras = ["testing"] }
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[tool.mypy]
python_version = "3.9"
warn_unused_configs = true
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-kustomer = 'tap_kustomer.tap:Tapkustomer.cli'
[tool.ruff]
line-length = 100
target-version = "py37"
[tool.ruff.lint]
ignore = ["ANN101", "DJ", "PD", "D102", "COM812", "ISC001"]
select = ["ALL"]
[tool.ruff.lint.flake8-import-conventions]
banned-from = ["typing"]
[tool.ruff.lint.flake8-import-conventions.extend-aliases]
typing = "t"
[tool.ruff.lint.per-file-ignores]
"tap_kustomer/streams.py" = ["D101"]
"tests/*" = ["ANN201"]
[tool.ruff.lint.pydocstyle]
convention = "google"