-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.03 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
[tool.poetry]
name = "dbt-exasol"
version = "1.8.2"
description = "Adapter to dbt-core for warehouse Exasol"
authors = ["Torsten Glunde <[email protected]>", "Ilija Kutle <[email protected]>"]
homepage = "https://alligatorcompany.gitlab.io/dbt-exasol"
repository = "https://github.com/tglunde/dbt-exasol"
packages = [
{ include = "dbt" },
{ include = "dbt/**/*.py" },
{ include = "tests/**/*.py"}
]
license = "GPL3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8, <3.13"
pyexasol = "^0.25.2"
sqlfluff = "^2.3"
pyyaml = "6.0.1"
hologram = "^0.0.16"
pytest-xdist = "^3.3.1"
protobuf = "4.25.3"
dbt-adapters = "^1.3.2"
dbt-core = "^1.8.4"
dbt-tests-adapter = "^1.9.2"
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.8"
exceptiongroup = "^1.1.1"
black = ">=22.8,<25.0"
pytest = "^7.2.0"
pytest-dotenv = "^0.5.2"
tox = "^3.26.0"
pytest-parallel = "^0.1.1"
ipykernel = "^6.25.0"
pytest-xdist = "^3.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"