-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
57 lines (50 loc) · 925 Bytes
/
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
[tool.poetry]
name = "tap-csv"
version = "1.1.0"
description = "Singer tap for CSV, built with the Meltano SDK for Singer Taps."
authors = ["Pat Nadolny"]
keywords = [
"ELT",
"CSV",
]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.9"
singer-sdk = "~=0.42.0"
[tool.poetry.group.dev.dependencies]
coverage = ">=7.2"
mypy = ">=1.4"
pytest = ">=7.4.4"
ruff = ">=0.1.15"
types-requests = ">=2.31.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# CLI declaration
tap-csv = 'tap_csv.tap:TapCSV.cli'
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
ignore = [
"COM812",
"D105",
"D203",
"D213",
]
select = [
"A",
"B",
"W",
"D",
"COM",
"I",
# "PTH",
"PERF",
"RUF",
"TCH",
"UP",
]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]