-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
77 lines (71 loc) · 1.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core>=1",
]
[tool.poetry]
name = "tap-smoke-test"
version = "0.0.1"
description = "`tap-smoke-test` is a Singer tap for SmokeTest, built with the Meltano SDK for Singer Taps."
authors = [
"Meltano team and contributors <hello@meltano.com>",
]
maintainers = [
"Meltano team and contributors <hello@meltano.com>",
]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.9"
requests = "~=2.31"
singer-sdk = "~=0.44.0"
genson = "~=1.2"
[tool.poetry.group.dev.dependencies]
pytest = "~=8.0"
singer-sdk = { version = "~=0.44.0", extras = [
"testing",
] }
[tool.poetry.scripts]
# CLI declaration
tap-smoke-test = 'tap_smoke_test.tap:TapSmokeTest.cli'
[tool.ruff]
target-version = "py39"
line-length = 120
lint.select = [
"A",
"ANN",
"B",
"BLE",
"C4",
"C9",
"D",
"DTZ",
"FA",
"FBT",
"G",
"I",
"LOG",
"N",
"PERF",
"PTH",
"RUF",
"SIM",
"T10",
"TC",
"TID",
"UP",
]
lint.per-file-ignores."tests/*" = [
"ANN",
"D1",
]
lint.flake8-annotations.allow-star-arg-any = true
lint.flake8-annotations.mypy-init-return = true
lint.flake8-annotations.suppress-dummy-args = true
lint.flake8-import-conventions.banned-from = [
"typing",
]
lint.flake8-import-conventions.extend-aliases.typing = "t"
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"