generated from meltano/basic-python-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (40 loc) · 1.2 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
[tool.poetry]
name = "meltano-dbt-ext"
version = "0.0.0"
description = "A Meltano utility extension to manage dbt projects."
authors = ["Meltano Team and Contributors <hello@meltano.com>"]
maintainers = ["Meltano Team and Contributors <hello@meltano.com>"]
readme = "README.md"
homepage = "https://meltano.com"
repository = "https://github.com/meltano/dbt-ext"
license = "Apache-2.0"
packages = [
{ include = "dbt_ext" },
]
# If you need to static assets with your extension, you can add them here.
# Under a directory path of "files_dbt-ext/"
include = [
{path = "files_dbt_ext"},
]
[tool.poetry.dependencies]
python = ">=3.8"
PyYAML = "^6.0.0"
click = "^8.1.3"
typer = "^0.6.1"
"meltano.edk"= { version = "~=0.4.0", python = "<4" }
importlib-resources = ">=5.9.0,<6"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
black = ">=23"
isort = ">=5.13"
flake8 = ">=5"
pre-commit = ">=3"
pytest = ">=8"
[build-system]
requires = ["poetry-core>=1.9,<2", "poetry-dynamic-versioning>=1,<2"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.scripts]
dbt_extension = 'dbt_ext.main:app'
dbt_invoker = 'dbt_ext.pass_through:pass_through_cli'
[tool.poetry-dynamic-versioning]
enable = true