forked from tglunde/dbt-exasol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 965 Bytes
/
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
[tool.poetry]
name = "dbt-exasol"
version = "1.6.0"
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.12"
dbt-core = "^1.6 <1.7"
pyexasol = "^0.25.0"
sqlfluff = "^2.1"
pyyaml = "6.0.1"
pytest-xdist = "^3.3.1"
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.8"
exceptiongroup = "^1.1.1"
black = "^22.8.0"
pytest = "^7.1.3"
pytest-dotenv = "^0.5.2"
tox = "^3.26.0"
dbt-tests-adapter = "^1.6 <1.7"
pytest-parallel = "^0.1.1"
ipykernel = "^6.25.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"