-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (64 loc) · 1.68 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core>=1,<2",
]
[tool.poetry]
name = "tap-pomelo"
version = "0.0.1"
description = "Singer tap for Pomelo, built with the Meltano SDK for Singer Taps."
authors = [ "Edgar-Ramírez <edgarrm358@gmail.com>" ]
maintainers = [ "Edgar-Ramírez <edgarrm358@gmail.com>" ]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = [
"ELT",
"singer.io",
"Pomelo",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/edgarrmondragon/tap-pomelo"
repository = "https://github.com/edgarrmondragon/tap-pomelo"
documentation = "https://github.com/edgarrmondragon/tap-pomelo#readme"
scripts."tap-pomelo" = "tap_pomelo.tap:TapPomelo.cli"
[tool.poetry.dependencies]
python = ">=3.11"
singer-sdk = "~=0.41.0"
[tool.poetry.dev-dependencies]
singer-sdk = { version = "*", extras = [ "testing" ] }
[tool.ruff]
target-version = "py311"
line-length = 88
lint.select = [
"ALL",
]
lint.ignore = [
"ANN101", # missing-type-self
"DJ", # flake8-django
]
lint.per-file-ignores."noxfile.py" = [
"ANN",
]
lint.per-file-ignores."tests/*" = [
"ANN201", # missing-return-type-public-function
"S101", # assert
"SLF001", # private-member-access
]
lint.isort.known-first-party = [ "tap_pomelo" ]
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
[tool.pyproject-fmt]
max_supported_python = "3.13"
[tool.pytest.ini_options]
addopts = "-vvv"
[tool.mypy]
warn_unused_configs = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [ "backoff.*" ]