forked from MeltanoLabs/target-snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (50 loc) · 1.3 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
[tool.poetry]
name = "meltanolabs-target-snowflake"
version = "0.0.0"
description = "`target-snowflake` is a Singer target for Snowflake, built with the Meltano SDK for Singer Targets."
readme = "README.md"
authors = ["Ken Payne"]
keywords = [
"ELT",
"Snowflake",
]
license = "Apache 2.0"
packages = [
{ include = "target_snowflake" }
]
[tool.poetry.dependencies]
python = "<3.12,>=3.7.1"
requests = "^2.31.0"
snowflake-sqlalchemy = "^1.4.7"
singer-sdk = "0.30.0"
cryptography = "^40.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
pytest-xdist = ">=3.3.1"
singer-sdk = { version="0.30.0", extras = ["testing"] }
[tool.poetry.group.dev.dependencies]
coverage = "^7.2.7"
[tool.ruff]
ignore = [
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
]
select = ["ALL"]
src = ["target_snowflake"]
target-version = "py37"
[tool.ruff.flake8-annotations]
allow-star-arg-any = true
[tool.ruff.isort]
known-first-party = ["target_snowflake"]
[tool.ruff.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core>=1.0.8", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
# CLI declaration
target-snowflake = 'target_snowflake.target:TargetSnowflake.cli'
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"