forked from MeltanoLabs/tap-snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.14 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
[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 <[email protected]>"]
keywords = [
"ELT",
"Snowflake",
]
license = "Apache 2.0"
packages = [
{ include = "tap_snowflake" },
]
[tool.poetry.dependencies]
python = ">=3.7.1,<3.12"
requests = "^2.25.1"
singer-sdk = "~=0.30.0"
snowflake-sqlalchemy = "^1.4.7"
snowflake-connector-python = "^3.0.2"
sqlalchemy = "<2"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^3.9.2"
isort = "^5.10.1"
mypy = "^0.991"
pydocstyle = "^6.1.1"
singer-sdk = {extras = ["testing"], version = "*"}
tox = "^3.24.4"
types-requests = "^2.26.1"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "tap_snowflake"
[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"