-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (43 loc) · 1.13 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
[tool.poetry]
name = "tap-trello"
version = "0.7.0"
description = "`tap-trello` is a Singer tap for Trello, built with the Meltano SDK for Singer Taps."
authors = ["Daniel Walker"]
keywords = [
"ELT",
"trello",
]
license = "AGPL-3.0"
[tool.poetry.dependencies]
python = "^3.8"
singer-sdk = "^0.42.1"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
[tool.ruff]
src = ["tap_trello"]
target-version = "py38"
[tool.ruff.lint]
ignore = [
"ANN001", # missing-type-function-argument
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
"ANN201", # missing-return-type-undocumented-public-function
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
select = ["ALL"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.isort]
known-first-party = ["tap_trello"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-trello = 'tap_trello.tap:TapTrello.cli'