Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed May 13, 2024
1 parent d9f8df6 commit ce3f8af
Showing 1 changed file with 42 additions and 19 deletions.
61 changes: 42 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,20 @@ name = "tap-dbt"
version = "0.0.0"
description = "Singer tap for dbt, built with the Singer SDK."
license = "Apache-2.0"
authors = ["Edgar Ramírez Mondragón <[email protected]>"]
maintainers = ["Edgar Ramírez Mondragón <[email protected]>"]
authors = [
"Edgar Ramírez Mondragón <[email protected]>",
]
maintainers = [
"Edgar Ramírez Mondragón <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/edgarrmondragon/tap-dbt"
keywords = ["singer.io", "elt", "dbt", "singer-sdk"]
keywords = [
"singer.io",
"elt",
"dbt",
"singer-sdk",
]

[tool.poetry.dependencies]
python = ">=3.8"
Expand All @@ -23,15 +32,15 @@ pyyaml = "~=6.0"
requests = "~=2.31.0"
singer-sdk = "~=0.37.0"

[tool.poetry.scripts]
tap-dbt = 'tap_dbt.tap:cli'

[tool.poetry.group.dev.dependencies]
deptry = ">=0.14.2"
faker = ">=17.6"
pytest = "~=8.0"
responses = "~=0.25.0"

[tool.poetry.scripts]
tap-dbt = 'tap_dbt.tap:cli'

[tool.poetry-dynamic-versioning]
enable = true
format-jinja = """
Expand All @@ -49,33 +58,47 @@ vcs = "git"

[tool.ruff]
line-length = 88
src = ["tap_dbt", "tests"]
src = [
"tap_dbt",
"tests",
]
target-version = "py38"

[tool.ruff.lint.isort]
known-first-party = [
"tap_dbt",
]
required-imports = [
"from __future__ import annotations",
]

[tool.ruff.lint]
ignore = [
"ANN101", # missing-type-self
"FIX002", # line-contains-todo
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
"ANN101", # missing-type-self
"FIX002", # line-contains-todo
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
select = [
"ALL",
]
select = ["ALL"]
unfixable = [
"ERA001", # commented-out-code
"ERA001", # commented-out-code
]

[tool.ruff.lint.isort]
known-first-party = ["tap_dbt"]
required-imports = ["from __future__ import annotations"]

[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN201", "S101"]
"tests/*" = [
"ANN201",
"S101",
]

[tool.ruff.lint.pydocstyle]
convention = "google"

[tool.deptry]
known_first_party = ["tap_dbt"]
known_first_party = [
"tap_dbt",
]

[tool.deptry.package_module_name_map]
faker = "faker"
Expand Down

0 comments on commit ce3f8af

Please sign in to comment.