-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (42 loc) · 1.18 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
[tool.poetry]
name = "tap-messagebird"
version = "0.0.0"
description = "`tap-messagebird` is a Singer tap for Messagebird, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["Meltano Team <[email protected]>"]
keywords = [
"ELT",
"Messagebird",
]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.8"
requests = "~=2.25"
singer-sdk = { version="~=0.38.0"}
fs-s3fs = { version = "^1.1.1", optional = true}
[tool.poetry.dev-dependencies]
pytest = "~=8.2"
responses = ">=0.23.3"
singer-sdk = { version="~=0.38.0", extras = ["testing"] }
[tool.poetry.extras]
s3 = ["fs-s3fs"]
[build-system]
requires = ["poetry-core==1.9", "poetry-dynamic-versioning==1.2"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
tap-messagebird = 'tap_messagebird.tap:TapMessagebird.cli'
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
ignore = ["ANN101", "PLR2004", "N818", "G004", "EM101", "COM812", "ISC001"]
select = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"scripts/*" = ["ANN", "D", "INP"]
"tests/*" = ["ANN"]
[tool.ruff.lint.pydocstyle]
convention = "google"