This repository was archived by the owner on Mar 31, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (107 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
119 lines (107 loc) · 2.4 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "dataform2looker"
dynamic = [ "version" ]
[project.urls]
Homepage = "https://github.com/devoteamgcloud/dataform2looker/"
"Bug Tracker" = "https://github.com/devoteamgcloud/dataform2looker/issues"
Documentation = "https://github.com/devoteamgcloud/dataform2looker/blob/main/README.md"
"Source Code" = "https://github.com/devoteamgcloud/dataform2looker/"
[tool]
[tool.poetry]
authors = ["Devoteam <info@devoteam.com>"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
description = "A package to generate Looker view files automatically from dataform models."
license = "MIT"
keywords = [ "airflow", "orchestration", "workflow", "dag", "pipelines", "automation", "data" ]
name = "dataform2looker"
packages = [
{include = "dataform2looker"},
]
readme = "README.md"
version = "0.0.1"
[tool.poetry.scripts]
df2looker = "dataform2looker.dataform2looker:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pre-commit = "3.8.0"
pytest-mock = "^3.15.1"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=1.8.3"]
[tool.poetry.dependencies]
python = "^3.10"
lkml = "1.3.5"
google-cloud-bigquery = "3.25.0"
#[tool.poetry.extras] TODO: add when other databases are implemented
#bigquery = ["google-cloud-bigquery"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# flake8-annotations
"ANN",
# pep8-naming
"N",
# flake8-pie
"PIE",
# pydocstyle
"D",
# pydoclint
"DOC",
]
ignore = ["ANN101"]
preview = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
".env",
]
indent-width = 4
[tool.ruff.format]
indent-style = "space"
preview = true