forked from MeltanoLabs/target-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (58 loc) · 1.61 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
[tool.poetry]
name = "target-csv"
version = "0.0.1"
description = "`target-csv` is a Singer target for CSV, built with the Meltano SDK for Singer Targets."
authors = ["Meltano <hello@meltano.com>"]
license = "Apache-2.0"
keywords = [
"CSV",
"Singer",
"ELT",
"ETL",
"Meltano",
"Meltano SDK",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.8"
singer-sdk = "~=0.34.0"
[tool.poetry.dev-dependencies]
pytest = "~=7.4"
[tool.poetry.scripts]
target-csv = 'target_csv.target:TargetCSV.cli'
[build-system]
requires = ["poetry-core>=1.0.7"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
ignore = [
"ANN101", # Missing type annotation for `self` in method
"ANN102", # Missing type annotation for `cls` in class method
"ANN401", # Allow `typing.Any` as parameter type
]
select = [
"ANN", # flake8-annotations
"C90", # mccabe
"D", # pydocstyle
"E", # pycodestyle (error)
"F", # pyflakes
"W", # pycodestyle (warning)
"S", # flake8-bandit
]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = ["ANN", "D1", "S101"]