-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
78 lines (71 loc) · 1.88 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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs==0.4",
"hatchling==1.27",
]
[project]
name = "tap-stackexchange"
description = "Singer tap for StackExchange, built with the Meltano SDK for Singer Taps."
readme = "README.md"
keywords = [
"ELT",
"meltano",
"singer-io",
"StackExchange",
]
license = "Apache-2.0"
authors = [ { name = "Edgar Ramírez-Mondragón", email = "[email protected]" } ]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"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",
]
dynamic = [ "version" ]
dependencies = [
"pyrate-limiter==3.*; python_version<'4'",
"requests-cache==1.*; python_version<'4'",
"singer-sdk==0.44.*",
]
urls.Documentation = "https://github.com/MeltanoLabs/tap-stackexchange/blob/main/README.md"
urls.Homepage = "https://github.com/MeltanoLabs/tap-stackexchange"
urls.Repository = "https://github.com/MeltanoLabs/tap-stackexchange"
scripts.tap-stackexchange = "tap_stackexchange.tap:TapStackExchange.cli"
[dependency-groups]
dev = [
{ include-group = "test" },
{ include-group = "typing" },
]
test = [
"pytest-github-actions-annotate-failures>=0.3",
"pytest-httpserver>=1.0.8,<2; python_version<'4'",
"singer-sdk[testing]>=0.23",
]
typing = [
"mypy>=1.11.1",
"types-requests",
]
[tool.hatch.version]
source = "vcs"
[tool.ruff]
line-length = 88
lint.select = [
"ALL",
]
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