-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!--pre-commit.ci start--> updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.4](astral-sh/ruff-pre-commit@v0.4.3...v0.4.4) - [github.com/tox-dev/pyproject-fmt: 1.8.0 → 2.0.4](tox-dev/pyproject-fmt@1.8.0...2.0.4) - [github.com/python-jsonschema/check-jsonschema: 0.28.2 → 0.28.3](python-jsonschema/check-jsonschema@0.28.2...0.28.3) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f012b03
commit 6773a7c
Showing
2 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
[build-system] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = [ | ||
"poetry-core>=1", | ||
] | ||
|
||
[tool.poetry] | ||
name = "tap-smoke-test" | ||
version = "0.0.1" | ||
description = "`tap-smoke-test` is a Singer tap for SmokeTest, built with the Meltano SDK for Singer Taps." | ||
authors = ["Meltano team and contributors <[email protected]>"] | ||
maintainers = ["Meltano team and contributors <[email protected]>"] | ||
authors = [ | ||
"Meltano team and contributors <[email protected]>", | ||
] | ||
maintainers = [ | ||
"Meltano team and contributors <[email protected]>", | ||
] | ||
license = "Apache-2.0" | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -14,13 +24,9 @@ genson = "~=1.2" | |
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "~=8.0" | ||
singer-sdk = { version = "~=0.37.0", extras = ["testing"] } | ||
|
||
[build-system] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = [ | ||
"poetry-core>=1", | ||
] | ||
singer-sdk = { version = "~=0.37.0", extras = [ | ||
"testing", | ||
] } | ||
|
||
[tool.poetry.scripts] | ||
# CLI declaration | ||
|
@@ -32,7 +38,7 @@ target-version = "py38" | |
|
||
[tool.ruff.lint] | ||
ignore = [ | ||
"ANN101" | ||
"ANN101", | ||
] | ||
select = [ | ||
"ANN", | ||
|
@@ -47,16 +53,23 @@ mypy-init-return = true | |
suppress-dummy-args = true | ||
|
||
[tool.ruff.lint.flake8-import-conventions] | ||
banned-from = ["typing"] | ||
banned-from = [ | ||
"typing", | ||
] | ||
|
||
[tool.ruff.lint.flake8-import-conventions.extend-aliases] | ||
typing = "t" | ||
|
||
[tool.ruff.lint.isort] | ||
required-imports = ["from __future__ import annotations"] | ||
required-imports = [ | ||
"from __future__ import annotations", | ||
] | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
"tests/*" = ["ANN", "D1"] | ||
"tests/*" = [ | ||
"ANN", | ||
"D1", | ||
] | ||
|
||
[tool.ruff.lint.pydocstyle] | ||
convention = "google" |