-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (41 loc) · 1.17 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
[tool.poetry]
name = "dbt-metadata-api"
version = "0.1.0"
description = "A GraphQL API for interacting with dbt Artifacts."
authors = ["Judah Rand <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
packages = [{include = "dbt_metadata_api"}]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
dbt-core = "^1.3.0"
strawberry-graphql = {extras = ["fastapi"], version = "^0.138.1"}
uvicorn = "^0.19.0"
universal-pathlib = "^0.0.21"
gcsfs = { version = "^2022.10.0", optional = true }
s3fs = { version = "^2022.10.0", optional = true }
adlfs = { version = "^2022.10.0", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
mypy = "^0.982"
[tool.poetry.extras]
gcs = ["gcsfs"]
s3 = ["s3fs"]
azure = ["adlfs"]
[tool.black]
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.mypy]
plugins = ["strawberry.ext.mypy_plugin"]
[[tool.mypy.overrides]]
module = "upath.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "dbt.include.global_project.*"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"