-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
76 lines (64 loc) · 1.59 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
[tool.poetry]
name = "meltanolabs-tap-snowflake"
version = "0.0.0"
description = "`tap-snowflake` is a Singer tap for Snowflake, built with the Meltano SDK for Singer Taps."
readme = "README.md"
authors = ["Meltano Team <hello@meltano.com>"]
keywords = [
"ELT",
"Snowflake",
]
license = "Apache 2.0"
packages = [
{ include = "tap_snowflake" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
requests = "^2.25.1"
singer-sdk = "~=0.39.1"
snowflake-sqlalchemy = "1.6.1"
snowflake-connector-python = { version = "~=3.12.1", extras = ["secure-local-storage"] }
sqlalchemy = "~=2.0.34"
cryptography = ">=3.4.6,<42.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
singer-sdk = {extras = ["testing"], version = "*"}
tox = "^3.24.4"
types-requests = "^2.26.1"
ruff = "^0.6.7"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_snowflake"
[tool.ruff]
line-length = 88
src = ["target_snowflake"]
target-version = "py38"
[tool.ruff.lint]
ignore = [
"ANN001",
"ANN401",
"S608",
"SLF001",
"EM101",
]
select = ["ALL"]
[tool.ruff.format]
quote-style = "double"
exclude = ["*.pyi"]
[tool.ruff.lint.isort]
known-first-party = ["target_snowflake"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.mccabe]
max-complexity = 10
[build-system]
requires = ["poetry-core>=1.0.8", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
tap-snowflake = "tap_snowflake.tap:TapSnowflake.cli"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"