-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
81 lines (72 loc) · 1.94 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
78
79
80
81
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = [
"poetry-core==1.9",
"poetry-dynamic-versioning==1.4",
]
[tool.poetry]
name = "tap-stackexchange"
version = "0.0.0"
description = "Singer tap for StackExchange, built with the Meltano SDK for Singer Taps."
authors = [
"Edgar Ramírez-Mondragón <[email protected]>",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = [
"ELT",
"meltano",
"singer-io",
"StackExchange",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/MeltanoLabs/tap-stackexchange"
repository = "https://github.com/MeltanoLabs/tap-stackexchange"
documentation = "https://github.com/MeltanoLabs/tap-stackexchange/blob/main/README.md"
[tool.poetry.dependencies]
python = ">=3.9"
pyrate-limiter = { version = "==3.*", python = "<4" }
requests-cache = { version = "==1.*", python = "<4" }
singer-sdk = "==0.42.*"
[tool.poetry.group.dev.dependencies]
mypy = ">=1.11.1"
pytest-httpserver = { version = "^1.0.8", python = "<4" }
singer-sdk = { extras = [
"testing",
], version = ">=0.23.0" }
types-requests = "*"
[tool.poetry.scripts]
# CLI declaration
tap-stackexchange = 'tap_stackexchange.tap:TapStackExchange.cli'
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
[tool.ruff]
target-version = "py39"
line-length = 88
lint.select = [
"ALL",
]
lint.ignore = [
"ANN101", # missing-type-self
]
lint.flake8-annotations.allow-star-arg-any = true
lint.isort.known-first-party = [
"tap_stackexchange",
]
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
[tool.mypy]
warn_redundant_casts = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true