-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.42 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
[tool.poetry]
name = "superset-ext"
version = "0.0.1"
description = "`superset-ext` is a Meltano utility extension."
authors = ["Meltano Team and Contributors"]
maintainers = ["Meltano Team and Contributors"]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "<3.11,>=3.7"
structlog = "^21.2.0"
PyYAML = "^6.0.0"
pydantic = "^1.9.0"
click = "^8.1.3"
typer = "^0.6.1"
"meltano.edk" = {git = "https://github.com/meltano/edk.git", rev = "v0.1.0"}
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
mypy = "^0.991"
[tool.isort]
profile = "black"
multi_line_output = 3 # Vertical Hanging Indent
src_paths = "superset_ext"
[tool.mypy]
disallow_untyped_defs = true
check_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
exclude = "tests"
[[tool.mypy.overrides]]
module = ["meltano.edk.*"]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "superset_ext" }
# uncomment this if you want to include static assets
# { include = "files_superset-ext.*" }
]
# If you need to static assets with your extension, you can add them here.
# Under a directory path of "files_superset-ext/"
#include = [
# "files_superset-ext/somefile.thing"
#]
[tool.poetry.scripts]
superset_extension = 'superset_ext.main:app'
superset_invoker = 'superset_ext.pass_through:pass_through_cli'