-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
86 lines (77 loc) · 1.8 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
82
83
84
85
86
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core<2,>=1",
]
[tool.poetry]
name = "tap-crowd-dev"
version = "0.0.1"
description = "`tap-crowd-dev` is a Singer tap for Crowd Dev, built with the Meltano SDK for Singer Taps."
authors = [
"Edgar Ramírez-Mondragón <edgarrm358@gmail.com>",
]
keywords = [
"ELT",
"singer.io",
"Crowd Dev",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/edgarrmondragon/tap-crowd-dev"
repository = "https://github.com/edgarrmondragon/tap-crowd-dev"
documentation = "https://github.com/edgarrmondragon/tap-crowd-dev#readme"
[tool.poetry.dependencies]
python = ">=3.8,<4"
singer-sdk = "~=0.40.0"
[tool.poetry.group.dev.dependencies]
singer-sdk = { version = "*", extras = [
"testing",
] }
requests-cache = { version = "^1.1.0", python = "<4.0" }
[tool.poetry.scripts]
# CLI declaration
"tap-crowd-dev" = "tap_crowd_dev.tap:TapCrowdDev.cli"
[tool.ruff]
target-version = "py38"
line-length = 88
src = [
"tap_crowd_dev",
"tests",
]
lint.select = [
"ALL",
]
lint.ignore = [
"ANN101", # missing-type-self
"COM812", # missing-trailing-comma
"DJ", # flake8-django
"ISC001", # single-line-implicit-string-concatenation
]
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.unfixable = [
"ERA001", # commented-out-code
]
lint.isort.known-first-party = [
"tap_crowd_dev",
]
lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
[tool.pytest.ini_options]
addopts = "-vvv"
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"backoff.*",
]