-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 968 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 968 Bytes
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
[tool.poetry]
authors = ["Maximilian Roos <m@maxroos.com>"]
description = "Write PRQL in dbt models"
homepage = "https://github.com/prql/dbt-prql"
include = [{path = "zzz_dbt_prql.pth", format = ["sdist", "wheel"]}]
license = "Apache-2.0"
name = "dbt-prql"
readme = "README.md"
repository = "https://github.com/prql/dbt-prql"
version = "0.2.4"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
# We're conservative on these because we're using internal APIs.
# We'll try and quite quickly on a new _.X._ release from dbt.
# And we can unblock this when we have upstream tests https://github.com/prql/dbt-prql/issues/6
dbt-core = ">=1.8.0,<=1.9.4"
dbt-common = ">=1.10.0,<1.22.0"
prql_python = "0.11.2"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
mypy = "*"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
default_section = "THIRDPARTY"
float_to_top = true
profile = "black"
skip_gitignore = true