forked from gouline/dbt-metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (70 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dbt-metabase"
description = "dbt + Metabase integration."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"PyYAML>=5.4.1",
"requests>=2.26.0",
"click>=8.0.0",
"rich>=12.0.0",
]
dynamic = ["version"]
license = { text = "MIT License" }
authors = [{ name = "Mike Gouline" }]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.scripts]
dbt-metabase = "dbtmetabase.__main__:cli"
[project.urls]
Homepage = "https://github.com/gouline/dbt-metabase"
[tool.setuptools]
packages = ["dbtmetabase"]
[tool.setuptools_scm]
version_file = "dbtmetabase/_version.py"
[tool.uv]
dev-dependencies = [
"build>=1.0.3",
"twine>=4.0.2",
"ruff>=0.5.5",
"mypy>=1.7.1",
"pytest>=8.3.1",
"molot~=1.0.0",
"dbt-postgres~=1.8.1",
"python-dotenv~=1.0.1",
"types-requests",
"types-PyYAML",
]
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
python_version = "3.8"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
]
ignore = [
"E501", # line-too-long
"F403", # undefined-local-with-import-star
]