-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (78 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
83 lines (78 loc) · 1.72 KB
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
78
79
80
81
82
83
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "tap-smoke-test"
version = "0.0.1"
description = "Singer tap for SmokeTest, built with the Meltano SDK for Singer Taps"
license = "Apache-2.0"
maintainers = [ { name = "Meltano team and contributors", email = "hello@meltano.com" } ]
authors = [ { name = "Meltano team and contributors", email = "hello@meltano.com" } ]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"genson~=1.2",
"requests~=2.31",
"singer-sdk~=0.53.0",
"typing-extensions>=4.13.2; python_full_version<'3.12'",
]
scripts.tap-smoke-test = "tap_smoke_test.tap:TapSmokeTest.cli"
[dependency-groups]
dev = [
"pytest~=9.0",
"singer-sdk[testing]",
"types-requests>=2.32.4.20250809",
]
[tool.ruff]
line-length = 120
lint.select = [
"A",
"ANN",
"ARG",
"B",
"BLE",
"C4",
"C9",
"D",
"DTZ",
"FA",
"FBT",
"FURB",
"G",
"I",
"ICN",
"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.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
[tool.pyproject-fmt]
max_supported_python = "3.14"
[tool.mypy]
overrides = [ { ignore_missing_imports = true, module = [
"genson.*",
] } ]