forked from TasmanAnalytics/dbt-datadict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 937 Bytes
/
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
[tool.poetry]
name = "dbt-datadict"
version = "0.3.0"
description = "Python CLI for automating the application of consistent field definitions to large multi-layered dbt projects."
authors = ["tom <[email protected]>"]
readme = "README.md"
license = "GNU GENERAL PUBLIC LICENSE"
homepage = "https://github.com/TasmanAnalytics/dbt-datadictionary"
packages = [
{ include = "datadict" },
]
exclude = [
"tests",
"Makefile",
"README.md",
"pyproject.toml",
"poetry.lock"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
datadict = "datadict:cli"
[tool.poetry.dependencies]
python = "^3.10"
"ruamel.yaml" = "^0.17.35"
click = ">=7.0,<8.1.4"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"