forked from decodableco/dbt-decodable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (67 loc) · 1.46 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
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "dbt-decodable"
version = "1.3.2"
description = "The Decodable adapter plugin for DBT"
license = "Apache2.0"
authors = [
"Decodable <info@decodable.co>",
"Getindata <hello@getindata.com>"
]
readme = "README.md"
repository = "https://github.com/decodableco/dbt-decodable"
keywords = ["decodable", "dbt"]
packages = [
{ include = "dbt" },
{ include = "decodable" },
{ include = "tests" },
]
[tool.poetry.dependencies]
python = ">=3.7.2"
dbt-core = "~1.3.1"
[tool.poetry.dev-dependencies]
black = "~22.3.0"
bumpversion = "*"
dbt-tests-adapter = "^1.3.2"
flake8 = "*"
flaky = "*"
freezegun = "~0.3.12"
ipdb = "*"
pip-tools = "*"
pre-commit = "*"
pyright = ">=1.1"
pytest = ">=7.2"
pytest-dotenv = "*"
pytest-logbook = "*"
pytest-csv = "*"
pytest-xdist = "*"
pytz = "*"
tox = ">=3.13"
twine = "*"
wheel = "*"
pyyaml = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["./dbt", "./decodable", "./tests"]
exclude = [
"**/node_modules",
"**/__pycache__",
".venv",
"*/.venv",
"build",
"./typings"
]
stubPath = "./typings"
venv = ".venv"
venvPath = "./"
typeCheckingMode = "strict"
reportMissingTypeStubs = true
reportPrivateImportUsage = false
reportUnknownMemberType = false
reportUnknownVariableType = false
reportUnknownLambdaType = false
strictListInference = true
strictDictionaryInference = true
strictParameterNoneValue = true
strictSetInference = true